summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/Install-with-Docker.md6
1 files 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.