June 2016
Beginner
456 pages
9h 31m
English
So, we have installed the latest Docker binary. In this recipe, we will start a new container with Docker. We will see some basic Docker commands to start and manage Docker containers.
Make sure that you have installed Docker and set your user as a member of the Docker group.
You may need sudo privileges for some commands.
Let's create a new Docker container and start it. With Docker, you can quickly start a container with the docker run command:
$ docker run -it --name dc1 ubuntu /bin/bash Unable to find image 'ubuntu:trusty' locally trusty: Pulling from library/ubuntu 6599cadaf950: Pull complete 23eda618d451: Pull complete
Read now
Unlock full access