fix(plane): entrypoint path

This commit is contained in:
naterfute
2025-04-02 20:20:49 -07:00
parent 8efd3531e1
commit d19aa4cd2f

View File

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