1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 17:26:01 +02:00

docker: pull image (#2586)

This commit is contained in:
Larry Lu 2018-11-14 02:12:03 +08:00 committed by Starbeamrainbowlabs
parent 298ece112d
commit f8c184402b

View file

@ -18,6 +18,10 @@
`docker container {{start|stop}} {{container_name}}`
- Pull an image from a docker registry:
`docker pull {{image}}`
- Start a container from an image and get a shell inside of it:
`docker container run -it {{image}} bash`