fix: entrypoint paths

This commit is contained in:
naterfute 2025-04-02 16:41:48 -07:00
parent 9a6c0310f5
commit 73e056ae2e
No known key found for this signature in database
GPG Key ID: 8DB2A1C41F6F6CA4

View File

@ -96,7 +96,7 @@ services:
- dev_env - dev_env
volumes: volumes:
- apiserver:/code - apiserver:/code
command: ./bin/docker-entrypoint-api-local.sh command: bin/docker-entrypoint-api-local.sh
depends_on: depends_on:
- plane-db - plane-db
@ -109,7 +109,7 @@ services:
- dev_env - dev_env
volumes: volumes:
- apiserver:/code - apiserver:/code
command: ./bin/docker-entrypoint-worker.sh command: bin/docker-entrypoint-worker.sh
depends_on: depends_on:
- api - api
- plane-db - plane-db
@ -122,7 +122,7 @@ services:
- dev_env - dev_env
volumes: volumes:
- apiserver:/code - apiserver:/code
command: ./bin/docker-entrypoint-beat.sh command: bin/docker-entrypoint-beat.sh
depends_on: depends_on:
- api - api
- plane-db - plane-db
@ -135,7 +135,7 @@ services:
- dev_env - dev_env
volumes: volumes:
- apiserver:/code - apiserver:/code
command: ./bin/docker-entrypoint-migrator.sh --settings=plane.settings.local command: bin/docker-entrypoint-migrator.sh --settings=plane.settings.local
depends_on: depends_on:
- plane-db - plane-db
- plane-redis - plane-redis