From 4a235028488b719c425ef7a176106e4944a7d3c4 Mon Sep 17 00:00:00 2001 From: Yehonal Date: Thu, 22 Apr 2021 10:44:05 +0200 Subject: Update Install-with-Docker.md --- docs/Install-with-Docker.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/Install-with-Docker.md b/docs/Install-with-Docker.md index b10e166..f82a564 100644 --- a/docs/Install-with-Docker.md +++ b/docs/Install-with-Docker.md @@ -192,14 +192,16 @@ Then your `docker-compose up` will automatically locate the `.env` with your cus ### How can I start, stop, create and destroy my containers? -- The `docker-compose start` will start your existing containers. +- The `docker-compose start --profile app start` will start your existing app containers in detached mode. - The `docker-compose stop` will stop your containers, but it won't remove them. -- The `docker-compose up` builds, (re)creates, and starts your containers. +- The `docker-compose --profile app up` builds, (re)creates, and starts your app services. - The `docker-compose down` command will stop your containers, but it also removes the stopped containers as well as any networks that were created. +- ⚠️ The `docker-compose down --rmi all -v` : command will stop, remove, and delete EVERYTHING. Including the volumes with the associated database ⚠️ + ### How can I delete my database files? **Warning** Once you've deleted your database files they are unrecoverable unless you have a backup. -- cgit