From d19aa4cd2f09cca71aa3a2b4f3b0dacac7c931b5 Mon Sep 17 00:00:00 2001 From: naterfute Date: Wed, 2 Apr 2025 20:20:49 -0700 Subject: [PATCH] fix(plane): entrypoint path --- blueprints/plane/docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/blueprints/plane/docker-compose.yml b/blueprints/plane/docker-compose.yml index e3c8218..59610f5 100644 --- a/blueprints/plane/docker-compose.yml +++ b/blueprints/plane/docker-compose.yml @@ -114,7 +114,7 @@ services: - dev_env volumes: - apiserver:/code - command: ../bin/docker-entrypoint-api-local.sh + command: ../files/bin/docker-entrypoint-api-local.sh depends_on: - plane-db - plane-redis @@ -128,7 +128,7 @@ services: - dev_env volumes: - apiserver:/code - command: ../bin/docker-entrypoint-worker.sh + command: ../files/bin/docker-entrypoint-worker.sh depends_on: - api - plane-db @@ -143,7 +143,7 @@ services: - dev_env volumes: - apiserver:/code - command: ../bin/docker-entrypoint-beat.sh + command: ../files/bin/docker-entrypoint-beat.sh depends_on: - api - plane-db @@ -158,7 +158,7 @@ services: - dev_env volumes: - apiserver:/code - command: ../bin/docker-entrypoint-migrator.sh --settings=plane.settings.local + command: ../files/bin/docker-entrypoint-migrator.sh --settings=plane.settings.local depends_on: - plane-db - plane-redis