diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 50db713..205f6a7 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -93,17 +93,16 @@ jobs: docker run -d \ --name convertit \ --restart unless-stopped \ - -p 8082:8080 \ --network host \ --memory=2g \ --cpus=1.5 \ - --health-cmd="curl -f http://localhost:8080/health || exit 1" \ + --health-cmd="curl -f http://localhost:8082/health || exit 1" \ --health-interval=30s \ --health-timeout=10s \ --health-retries=3 \ --health-start-period=60s \ -e ASPNETCORE_ENVIRONMENT=Production \ - -e ASPNETCORE_URLS="http://+:8080" \ + -e ASPNETCORE_URLS="http://+:8082" \ -e DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false \ -e DOTNET_USE_POLLING_FILE_WATCHER=true \ -e DOTNET_EnableDiagnostics=0 \