Files
gb-site/deploy/docker-compose.dev.yml
Ivan Liashkevich 2dadc5362d
All checks were successful
ci/woodpecker/push/deploy Pipeline was successful
Add PostHog analytics with heatmap support
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-09 16:49:52 +02:00

33 lines
869 B
YAML

services:
gb-dev-frontend:
build:
context: ../frontend
args:
- NEXT_PUBLIC_POSTHOG_KEY=phc_pe0mP58n724h9eFxanbGIUsfMyS14gnAmr5tYez9V3Q
- NEXT_PUBLIC_POSTHOG_HOST=https://eu.i.posthog.com
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