Get started with Docker
Finding and retrieving a Docker Container
$ docker search hello-world
$ docker pull hello-world
$ docker run hello-world
or
$ docker search hello-world
$ docker run hello-worldAs you can see in the second example, the pull comand can be included in the run one as a subcommand.
Running a Docker Container
$ docker run -it ubuntuManaging
$ docker images$ docker ps -a or docker ps -l$ docker ps -aTutorials
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04
Acknowledgements
Last updated
Was this helpful?