fix: entrypoint paths

This commit is contained in:
naterfute
2025-04-02 16:41:48 -07:00
parent 9a6c0310f5
commit 73e056ae2e

View File

@@ -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