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
379 B
YAML
15 lines
379 B
YAML
# Agencja AI — 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: agencja-ai-com-frontend
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "${FRONTEND_PORT:-8080}:80"
|