Reformat docker-compose command arrays and update tsconfig buildinfo

This commit is contained in:
Viktor Barzin 2026-02-09 20:52:44 +00:00
parent f465ccb8b8
commit 5b8aa98446
No known key found for this signature in database
GPG key ID: 0EB088298288D958
2 changed files with 21 additions and 4 deletions

View file

@ -60,7 +60,12 @@ services:
condition: service_healthy
mysql:
condition: service_healthy
command: ["sh", "-c", "alembic upgrade head && uvicorn api.app:app --host 0.0.0.0 --port 5001 --reload --reload-dir api --reload-dir services --reload-dir repositories --reload-dir models --no-server-header"]
command:
[
"sh",
"-c",
"alembic upgrade head && uvicorn api.app:app --host 0.0.0.0 --port 5001 --reload --reload-dir api --reload-dir services --reload-dir repositories --reload-dir models --no-server-header",
]
networks:
- rec-network
@ -143,7 +148,13 @@ services:
osrm-foot:
image: ghcr.io/project-osrm/osrm-backend:latest
container_name: rec-osrm-foot
command: ["osrm-routed", "--algorithm", "MLD", "/data/foot/greater-london-latest.osrm"]
command:
[
"osrm-routed",
"--algorithm",
"MLD",
"/data/foot/greater-london-latest.osrm",
]
volumes:
- ./osrm-data:/data
ports:
@ -156,7 +167,13 @@ services:
osrm-bicycle:
image: ghcr.io/project-osrm/osrm-backend:latest
container_name: rec-osrm-bicycle
command: ["osrm-routed", "--algorithm", "MLD", "/data/bicycle/greater-london-latest.osrm"]
command:
[
"osrm-routed",
"--algorithm",
"MLD",
"/data/bicycle/greater-london-latest.osrm",
]
volumes:
- ./osrm-data:/data
ports: