Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
added hint to use -v for removal of volumes associated with the container when deleting it (to avoid orphaned volume folders on the host)
  • Loading branch information
cschneider4711 committed Mar 15, 2015
1 parent cf2f2be commit 51402f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ If you want to run and then interact with a container, `docker start`, then spaw

If you want a transient container, `docker run --rm` will remove the container after it stops.

If you want to remove also the volumes associated with the container, the deletion of the container must include the -v switch like in `docker rm -v`.

If you want to poke around in an image, `docker run -t -i <myimage> <myshell>` to open a tty.

If you want to map a directory on the host to a docker container, `docker run -v $HOSTDIR:$DOCKERDIR`. Also see [Volumes](https://github.com/wsargent/docker-cheat-sheet/#volumes).
Expand Down

0 comments on commit 51402f4

Please sign in to comment.