From 888283d5151bd2a2d78c743e0e494e1af43c4a1e Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Fri, 20 Feb 2026 21:18:41 -0500 Subject: [PATCH] refactor: update docker-compose.yml to specify absolute path for stacks directory --- docker-compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index beb6861d..a21a193f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,7 @@ services: sencho: image: saelix/sencho:latest + build: . container_name: sencho restart: unless-stopped ports: @@ -16,4 +17,4 @@ services: # STACKS DIRECTORY # Left Side: The absolute path to your Docker compose stacks on your server # Right Side: Internal container path (DO NOT CHANGE) - - SENCHO_STACKS_DIR:/app/compose + - /path/to/your/server/stacks:/app/compose