From 8efd3531e1ca7fa2d4739a0b07a9cdd3364dc961 Mon Sep 17 00:00:00 2001 From: naterfute Date: Wed, 2 Apr 2025 20:13:26 -0700 Subject: [PATCH] fix(plane): point entrypoints to the correct spot --- 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 2ba548b..e3c8218 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: ../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: ../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: ../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: ../bin/docker-entrypoint-migrator.sh --settings=plane.settings.local depends_on: - plane-db - plane-redis