docker:run_a_docker_container
Differences
This shows you the differences between two versions of the page.
docker:run_a_docker_container [2020/04/15 21:40] – created peter | docker:run_a_docker_container [2020/05/13 08:44] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Docker - Run a Docker Container ====== | ||
- | |||
- | Launching a container is simple as **docker run** + the image name you would like to run + the command to run within the container. | ||
- | |||
- | If the image doesn' | ||
- | |||
- | For example, if you ran **/bin/echo hello world** as your command, the container will start, print hello world and then stop: | ||
- | |||
- | <code bash> | ||
- | docker run ubuntu /bin/echo hello world | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE**: | ||
- | </ | ||
- | |||
- | |||
- | ---- | ||
- | |||
- | An alternative method is: | ||
- | |||
- | <code bash> | ||
- | docker run -ti ubuntu | ||
- | </ | ||
- | |||
- | * **-t**: | ||
- | * **-i**: | ||
- | |||
- | This allows continuous use of the container until the terminal is exited by running the **exit** command. | ||
docker/run_a_docker_container.1586986834.txt.gz · Last modified: 2020/07/15 09:30 (external edit)