Updated planes yml

This commit is contained in:
2025-12-31 00:44:23 -05:00
parent 6c0c9d2edf
commit b56fc01701

View File

@@ -20,6 +20,7 @@ services:
image: makeplane/plane-backend:stable image: makeplane/plane-backend:stable
container_name: plane-api container_name: plane-api
restart: unless-stopped restart: unless-stopped
command: /code/bin/docker-entrypoint-api.sh
environment: environment:
- DEBUG=0 - DEBUG=0
- DJANGO_SETTINGS_MODULE=plane.settings.production - DJANGO_SETTINGS_MODULE=plane.settings.production
@@ -45,7 +46,7 @@ services:
image: makeplane/plane-backend:stable image: makeplane/plane-backend:stable
container_name: plane-worker container_name: plane-worker
restart: unless-stopped restart: unless-stopped
command: ./bin/worker command: /code/bin/docker-entrypoint-worker.sh
environment: environment:
- DEBUG=0 - DEBUG=0
- DJANGO_SETTINGS_MODULE=plane.settings.production - DJANGO_SETTINGS_MODULE=plane.settings.production
@@ -68,7 +69,7 @@ services:
image: makeplane/plane-backend:stable image: makeplane/plane-backend:stable
container_name: plane-beat-worker container_name: plane-beat-worker
restart: unless-stopped restart: unless-stopped
command: ./bin/beat command: /code/bin/docker-entrypoint-beat.sh
environment: environment:
- DEBUG=0 - DEBUG=0
- DJANGO_SETTINGS_MODULE=plane.settings.production - DJANGO_SETTINGS_MODULE=plane.settings.production