October 2018
Intermediate to advanced
472 pages
10h 57m
English
Docker is a container platform that simplifies deployment. It solves the problem of installing software dependencies onto different server environments. If you are new to Docker, you can read more at https://www.docker.com/.
To install Docker on Linux machines, run the following command:
curl https://get.docker.com | sh
For other systems such as macOS and Windows, visit https://docs.docker.com/install/. You can skip this step if you already have Docker installed.
Once Docker is installed, you should be able to use the docker command in the Terminal, as follows:

Now we will create a docker file that will install ...
Read now
Unlock full access