User Tools

Site Tools


docker_run

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
docker_run [2015/10/06 13:05] – created luke7858docker_run [2024/05/23 07:26] (current) – external edit 127.0.0.1
Line 5: Line 5:
 |--rm  | Remove the container after the command/script has finished | |--rm  | Remove the container after the command/script has finished |
 | -v   | adds a volume to the container | | -v   | adds a volume to the container |
 +| -d   | tells Docker to run the container in the background    |
 +| -P   | automatically map any network port inside the container to a random high port within an ephemeral port range on your Docker host   |
 +| -p   | e.g. -p 80:5000 binds the container to a specific port. This would map port 5000 inside our container to port 80 on our local host |
 +| -h       |
 +networking source http://docs.docker.com/userguide/dockerlinks/
 +== Example Run with Mounted Volume ==
 <sxh bash> <sxh bash>
 +docker run -it -v /home/luke/documents:/location/on/container imageID
 </sxh> </sxh>
 +=== Example Run MountedVolume&SpecifiedPort ===
 <sxh bash> <sxh bash>
 +docker run -it -p 80:8081 -v /home/luke/documents:/location/on/container imageID
 </sxh> </sxh>
  
docker_run.1444136701.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki