4
edits
| Line 41: | Line 41: | ||
# `cd ./docker` | # `cd ./docker` | ||
# `docker pull` (this make take a while) | # `docker pull` (this make take a while) | ||
# `docker up -d` to start your docker image | # `docker compose up -d` to start your docker image | ||
# `docker ps` will list your running containers processes that are created by the docker yaml file | # `docker ps` will list your running containers processes that are created by the docker yaml file | ||
# `docker stop $(docker ps -q)` will stop all the containers by doing `docker stop` on all of the running containers (the -q flag lists by ID) | # `docker stop $(docker ps -q)` will stop all the containers by doing `docker stop` on all of the running containers (the -q flag lists by ID) | ||
edits