Files
site-slavic-pulse-com/docker-compose.yml
T
tomasz-syn-grzegorza 833e248518 Add post-video redirect to YouTube URL from env config.
After the intro finishes, users are redirected to POST_VIDEO_REDIRECT_URL loaded via generated config.js for dev, Docker, and Dokploy deployments.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-26 15:36:38 +02:00

17 lines
503 B
YAML

# Slavic Pulse — lokalny development (build z Dockerfile)
# Port hosta: FRONTEND_PORT z pliku .env (domyślnie 8080) → nginx w kontenerze na porcie 80
services:
frontend:
build:
context: .
dockerfile: Dockerfile
container_name: slavic-pulse-com-frontend
restart: unless-stopped
env_file:
- .env
environment:
POST_VIDEO_REDIRECT_URL: ${POST_VIDEO_REDIRECT_URL:-https://www.youtube.com/watch?v=kujXXtoHUbc}
ports:
- "${FRONTEND_PORT:-8080}:80"