mirror of
https://github.com/cheat/cheat.git
synced 2024-11-14 08:01:09 +01:00
commit
8e7ce511bd
1 changed files with 4 additions and 1 deletions
|
@ -19,6 +19,9 @@ docker inspect --format {{.State.Pid}} <container_name_or_ID>
|
|||
# http://nathanleclaire.com/blog/2014/07/12/10-docker-tips-and-tricks-that-will-make-you-sing-a-whale-song-of-joy/
|
||||
docker inspect --format='{{json .Volumes}}' <container_id> | python -mjson.tool
|
||||
|
||||
# Copy files/folders between a container and your host
|
||||
docker cp foo.txt mycontainer:/foo.txt
|
||||
|
||||
# list currently running containers
|
||||
docker ps
|
||||
|
||||
|
@ -26,4 +29,4 @@ docker ps
|
|||
docker ps -a
|
||||
|
||||
# list all images
|
||||
docker images
|
||||
docker images
|
||||
|
|
Loading…
Reference in a new issue