diff --git a/docker-compose-prod.yml b/docker-compose-prod.yml index 4538007..120f932 100644 --- a/docker-compose-prod.yml +++ b/docker-compose-prod.yml @@ -9,9 +9,13 @@ services: ports: - "${PORT:-8080}:${PORT:-8080}" healthcheck: - test: ["CMD-SHELL", "curl -f http://localhost:${PORT:-8080}/health || exit 1"] + test: + ["CMD-SHELL", "curl -f http://localhost:${PORT:-8080}/health || exit 1"] interval: 10s timeout: 5s retries: 5 start_period: 10s +networks: + coolify: + external: true