All checks were successful
ci/woodpecker/push/deploy Pipeline was successful
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
876 B
YAML
33 lines
876 B
YAML
services:
|
|
gb-prod-frontend:
|
|
build:
|
|
context: ../frontend
|
|
args:
|
|
- NEXT_PUBLIC_POSTHOG_KEY=phc_pe0mP58n724h9eFxanbGIUsfMyS14gnAmr5tYez9V3Q
|
|
- NEXT_PUBLIC_POSTHOG_HOST=https://eu.i.posthog.com
|
|
container_name: gb-prod-frontend
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:3100:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- INTERNAL_API_URL=http://gb-prod-backend:5000
|
|
networks:
|
|
- app-network
|
|
|
|
gb-prod-backend:
|
|
build: ../backend
|
|
container_name: gb-prod-backend
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:5100:5000"
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Production
|
|
- ConnectionStrings__Default=Host=postgres;Port=5432;Database=prod_db;Username=prod_user;Password=prod_pass_kL9mN2pQ7xR8sT4v
|
|
networks:
|
|
- app-network
|
|
|
|
networks:
|
|
app-network:
|
|
external: true
|