0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-06-30 02:31:08 +00:00

feat: Set default ports back to 80

This commit is contained in:
Alexander Konietzko 2024-02-21 09:45:08 +01:00
parent d8f0fa6afd
commit f7bf339907
No known key found for this signature in database
GPG Key ID: BA6905F37AEC2B5B
2 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,7 @@ services:
links:
- db
environment:
- ASPNETCORE_HTTP_PORTS=80
- ConnectionStrings__DefaultConnection=Server=db;Database=clean-architecture;Trusted_Connection=False;MultipleActiveResultSets=true;TrustServerCertificate=True;User Id=SA;Password=Password123!#
healthcheck:
test: ["CMD", "curl", "--fail", "http://localhost/healthz"]

View File

@ -33,5 +33,7 @@ spec:
ports:
- containerPort: 80
env:
- name: ASPNETCORE_HTTP_PORTS
value: 80
- name: ConnectionStrings__DefaultConnection
value: Server=sql-server;Database=clean-architecture;Trusted_Connection=False;MultipleActiveResultSets=true;TrustServerCertificate=True;User Id=SA;Password=Password123!#