chore: change host port from 8080 → 3410 to avoid conflicts
CI/CD / CI — dotnet build (push) Successful in 43s
CI/CD / Deploy — docker compose (push) Failing after 1s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Soroush Asadi
2026-06-02 00:06:16 +03:30
parent f97f891d67
commit 07af5c28b1
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -27,9 +27,9 @@ COPY --from=build /app/publish .
# Override connection string to use /app/data/asadi.db (volume path)
ENV ConnectionStrings__Default="Data Source=/app/data/asadi.db"
ENV ASPNETCORE_URLS="http://+:8080"
ENV ASPNETCORE_URLS="http://+:3410"
ENV ASPNETCORE_ENVIRONMENT="Production"
EXPOSE 8080
EXPOSE 3410
ENTRYPOINT ["dotnet", "AsadiTools.dll"]