| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
I try to document my Docker knowledge in one place and add pointers/remeber/spoilers so I do not have to reread all documentation.
More sources I should read:
docker-compose stop is not docker-compose down
docker-compose start will not create containers and pull images
docker-compose up will not create containers and pull images
docker run : creates a new container from the referenced Docker image
docker run -d --name test1 dumlutimuralp/networktest (this would start the container in background)
docker exec -it < container id > bash (This would attach the terminal to the container that is running in the background. To execute commands in the container)
docker run -it --name test1 dumlutimuralp/networktest /bin/bash (This command would start the container in the foreground and attach the terminal to the container right away. To properly exit, without killing the container, use ctrl + P + Q)
| Back | FazBrowse Home | New Git URL |