Files
WealthySmart/docker-compose.prod.yml
Carlos Escalante 570be71ac0
All checks were successful
Deploy to VPS / deploy (push) Successful in 40s
Fix domain: wealthy → wealth.cescalante.dev
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-21 09:40:54 -06:00

25 lines
595 B
YAML

services:
frontend:
build:
context: ./frontend
dockerfile: Dockerfile.prod
container_name: wealthysmart-frontend-prod
restart: unless-stopped
environment:
VIRTUAL_HOST: wealth.cescalante.dev
LETSENCRYPT_HOST: wealth.cescalante.dev
LETSENCRYPT_EMAIL: ${LETSENCRYPT_EMAIL}
expose:
- "80"
networks:
- nginx-prod-network
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://127.0.0.1/"]
interval: 30s
timeout: 10s
retries: 3
networks:
nginx-prod-network:
external: true