File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ services:
33 amadeus-backend :
44 container_name : amadeus-backend
55 restart : always
6+ depends_on :
7+ - typesense
68 build :
79 context : ./backend/
810 dockerfile : Dockerfile
@@ -16,12 +18,14 @@ services:
1618 - POCKET_ACCESS_TOKEN=${POCKET_ACCESS_TOKEN}
1719 - SUPABASE_URL=${SUPABASE_URL}
1820 - SUPABASE_SERVICE_ROLE_KEY=${SUPABASE_SERVICE_ROLE_KEY}
19- entrypoint : ["/bin/sh", "-c", "PYTHONPATH= /app uv run app:app --host 0.0.0.0 --port 8000"]
21+ entrypoint : ["/bin/sh", "-c", "cd /app && uv run app:app --host 0.0.0.0 --port 8000"]
2022
2123
2224 amadeus-backend-cron :
2325 container_name : amadeus-backend-cron
2426 restart : always
27+ depends_on :
28+ - typesense
2529 build :
2630 context : ./backend/
2731 dockerfile : Dockerfile
You can’t perform that action at this time.
0 commit comments