web/docker-compose.yml

14 lines
306 B
YAML
Raw Normal View History

2025-01-22 22:38:19 -06:00
services:
app:
image: ${IMAGE}
ports:
2025-01-23 00:11:58 -06:00
- "${APP_PORT}:4321"
2025-01-22 22:38:19 -06:00
environment:
- SMTP_HOST=${SMTP_HOST}
- SMTP_PORT=${SMTP_PORT}
- SMTP_USER=${SMTP_USER}
- SMTP_PASS=${SMTP_PASS}
- FROM_EMAIL=${FROM_EMAIL}
- TO_EMAIL=${TO_EMAIL}
restart: unless-stopped