- Frontend: Next.js 16 + shadcn/ui + Tailwind CSS 4 - Backend: .NET 9 Web API with Npgsql health check - Docker Compose for prod and dev environments - Woodpecker CI pipeline for auto-deploy - Health check endpoints for E2E testing Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
700 B
YAML
29 lines
700 B
YAML
services:
|
|
gb-dev-frontend:
|
|
build: ../frontend
|
|
container_name: gb-dev-frontend
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:3200:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- INTERNAL_API_URL=http://gb-dev-backend:5000
|
|
networks:
|
|
- app-network
|
|
|
|
gb-dev-backend:
|
|
build: ../backend
|
|
container_name: gb-dev-backend
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:5200:5000"
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
- ConnectionStrings__Default=Host=postgres;Port=5432;Database=dev_db;Username=dev_user;Password=dev_pass_vB6nM3qP8yW2rT9k
|
|
networks:
|
|
- app-network
|
|
|
|
networks:
|
|
app-network:
|
|
external: true
|