From ad7676a05d08ceef4441632c0915e172a2b0eb28 Mon Sep 17 00:00:00 2001 From: Ricardo Carneiro Date: Mon, 15 Sep 2025 19:04:37 -0300 Subject: [PATCH] fix: adicionar porta no deploy --- .gitea/workflows/deploy.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 \