From ac75283b0f8a981eddc467bb20d1bd1bf9f69a73 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Mon, 13 Nov 2023 23:31:34 +0800 Subject: [PATCH] Update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 94ee250..2a83ce5 100644 --- a/README.md +++ b/README.md @@ -68,8 +68,6 @@ Dockge is now running on http://localhost:5001 If you want to store your stacks in another directory, you can change the `DOCKGE_STACKS_DIR` environment variable and volumes. -For example, if you want to store your stacks in `/my-stacks`: - ```yaml version: "3.8" services: @@ -90,10 +88,10 @@ services: # ⚠️⚠️ If you did it wrong, your data could end up be written into a wrong path. # ✔️✔️✔️✔️ CORRECT: - /my-stacks:/my-stacks (Both paths match) # ❌❌❌❌ WRONG: - /docker:/my-stacks (Both paths do not match) - - /my-stacks:/my-stacks + - /opt/stacks:/opt/stacks environment: # Tell Dockge where is your stacks directory - - DOCKGE_STACKS_DIR=/my-stacks + - DOCKGE_STACKS_DIR=/opt/stacks ``` ## How to Update