All checks were successful
Docker Build (PR) / Build Docker image (pull_request) Has been skipped
14 lines
356 B
YAML
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
|