Files
links/docker-compose.prod.yml
Andrey K. Choi 17bd14383b
Some checks failed
continuous-integration/drone/push Build is failing
nginx test scripts
2025-11-02 14:56:47 +09:00

20 lines
560 B
YAML

# Production configuration for CatLink
services:
web:
environment:
- DJANGO_DEBUG=False
- DJANGO_SECURE_SSL_REDIRECT=False
- DJANGO_SECURE_HSTS_SECONDS=31536000
- DJANGO_SECURE_HSTS_INCLUDE_SUBDOMAINS=True
- DJANGO_SECURE_HSTS_PRELOAD=True
- DJANGO_ALLOWED_HOSTS=links.shareon.kr,sharon.kr,localhost,127.0.0.1
restart: unless-stopped
frontend:
environment:
- NODE_ENV=production
- NEXT_PUBLIC_API_URL=http://links.shareon.kr
restart: unless-stopped
db:
restart: unless-stopped