1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 11:33:33 +02:00

Merge pull request #445 from audibleblink/add_to_docker

adds commands for working with images in docker
This commit is contained in:
Leandro Ostera 2016-01-07 15:33:15 +01:00
commit 1ad1639427

View file

@ -18,3 +18,11 @@
- Stop a container
`docker stop {{container}}`
- Start a container from an image and get a shell inside of it
`docker run -it {{image}} bash`
- Run a command inside of an already running container
`docker exec {{container}} {{command}}`