From b56fc01701fad69cdc247f44faf44dcc22e10c55 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Wed, 31 Dec 2025 00:44:23 -0500 Subject: [PATCH] Updated planes yml --- stacks/plane/docker-compose.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stacks/plane/docker-compose.yml b/stacks/plane/docker-compose.yml index 1fceb6b..90ebc6f 100644 --- a/stacks/plane/docker-compose.yml +++ b/stacks/plane/docker-compose.yml @@ -20,6 +20,7 @@ services: image: makeplane/plane-backend:stable container_name: plane-api restart: unless-stopped + command: /code/bin/docker-entrypoint-api.sh environment: - DEBUG=0 - DJANGO_SETTINGS_MODULE=plane.settings.production @@ -45,7 +46,7 @@ services: image: makeplane/plane-backend:stable container_name: plane-worker restart: unless-stopped - command: ./bin/worker + command: /code/bin/docker-entrypoint-worker.sh environment: - DEBUG=0 - DJANGO_SETTINGS_MODULE=plane.settings.production @@ -68,7 +69,7 @@ services: image: makeplane/plane-backend:stable container_name: plane-beat-worker restart: unless-stopped - command: ./bin/beat + command: /code/bin/docker-entrypoint-beat.sh environment: - DEBUG=0 - DJANGO_SETTINGS_MODULE=plane.settings.production