22c3df41a8
Replace hardcoded HTML with .env generation, YouTube thumbnail backgrounds, responsive FHD/vertical intro, hardened nginx, and updated Dokploy deploy flow. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
505 B
YAML
15 lines
505 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
|
|
- ./assets:/usr/share/nginx/html/assets:ro
|
|
- ./default.conf:/etc/nginx/conf.d/default.conf:ro
|