add base files

This commit is contained in:
2025-09-28 11:06:59 +02:00
parent a0f05e8eb5
commit 12a02b07b6
14 changed files with 1128 additions and 0 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
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