From 73e056ae2ea1b416b8d07ce30ab78cb2e5d66109 Mon Sep 17 00:00:00 2001 From: naterfute Date: Wed, 2 Apr 2025 16:41:48 -0700 Subject: [PATCH] fix: entrypoint paths --- 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 ef0c93d..253cc48 100644 --- a/blueprints/plane/docker-compose.yml +++ b/blueprints/plane/docker-compose.yml @@ -96,7 +96,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 @@ -109,7 +109,7 @@ services: - dev_env volumes: - apiserver:/code - command: ./bin/docker-entrypoint-worker.sh + command: bin/docker-entrypoint-worker.sh depends_on: - api - plane-db @@ -122,7 +122,7 @@ services: - dev_env volumes: - apiserver:/code - command: ./bin/docker-entrypoint-beat.sh + command: bin/docker-entrypoint-beat.sh depends_on: - api - plane-db @@ -135,7 +135,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