feat: harden auth ops and deployment baseline

This commit is contained in:
2026-06-27 10:53:53 +09:00
parent a6ca30eec8
commit 28060b71be
41 changed files with 714 additions and 208 deletions
+2 -18
View File
@@ -27,30 +27,14 @@ services:
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_URLS: http://0.0.0.0:5001
ConnectionStrings__Default: "Host=postgres;Database=taxbaikdb;Username=taxbaik;Password=taxbaik123"
Jwt__SecretKey: "dev-secret-key-change-in-production-min-32-chars!"
ports:
- "5001:5001"
depends_on:
postgres:
condition: service_healthy
volumes:
- ./publish/web:/app
taxbaik-admin:
build:
context: .
dockerfile: Dockerfile.admin
container_name: taxbaik-admin
environment:
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_URLS: http://0.0.0.0:5002
ConnectionStrings__Default: "Host=postgres;Database=taxbaikdb;Username=taxbaik;Password=taxbaik123"
ports:
- "5002:5002"
depends_on:
postgres:
condition: service_healthy
volumes:
- ./publish/admin:/app
- ./publish:/app
volumes:
postgres_data: