Files
SemapForm/docker-compose.yml
2025-09-28 11:06:59 +02:00

13 lines
312 B
YAML

services:
web:
build: .
container_name: semapform
environment:
- SMTP_HOST=${SMTP_HOST:-smtp}
- SMTP_PORT=${SMTP_PORT:-25}
- MAIL_FROM=${MAIL_FROM:-noreply@example.com}
- MAIL_TO=${MAIL_TO:-destination@example.com}
ports:
- "8000:8000"
restart: unless-stopped