diff --git a/docker-compose.yml b/docker-compose.yml index 9f31977..1c56352 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,7 +14,7 @@ services: - backend_data:/app/data - backend_storage:/app/storage healthcheck: - test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://127.0.0.1:8066/health').read()"] + test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://127.0.0.1:8000/health').read()"] interval: 15s timeout: 5s retries: 10 @@ -23,7 +23,7 @@ services: build: context: ./web environment: - API_INTERNAL_URL: http://backend:8066 + API_INTERNAL_URL: http://backend:8000 ports: - "3011:3000" depends_on: