Files
SemapForm/docker-compose.yml
WorldTeacher 889890713a
All checks were successful
Docker Build (PR) / Build Docker image (pull_request) Has been skipped
update example, add mail_enabled env
2025-11-19 16:42:16 +01:00

14 lines
356 B
YAML

services:
web:
build: .
container_name: semapform
environment:
- MAIL_ENABLED=${MAIL_ENABLED:-false}
- 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