Files
site-slavic-pulse-com/docker-compose.dev.yml
T
tomasz-syn-grzegorza 3a843c53f3 Move template assets to .env-driven generation.
Site metadata, images, favicons, and YouTube settings are now configured via .env and rendered from HTML/manifest templates at dev or container startup.

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

16 lines
560 B
YAML

# Lokalny dev: pliki z dysku → nginx (bez rebuildu po każdej zmianie)
# Uruchomienie: docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d
services:
frontend:
image: nginx:1.27-alpine
build: !reset null
env_file:
- .env
volumes:
- ./index.html:/usr/share/nginx/html/index.html:ro
- ./site.webmanifest:/usr/share/nginx/html/site.webmanifest:ro
- ./config.js:/usr/share/nginx/html/config.js:ro
- ./assets:/usr/share/nginx/html/assets:ro
- ./default.conf:/etc/nginx/conf.d/default.conf:ro