-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
21 lines (21 loc) · 680 Bytes
/
docker-compose.yml
File metadata and controls
21 lines (21 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
services:
mailshield:
image: ghcr.io/rondevhub/mailshield:latest
container_name: mailshield
restart: unless-stopped
environment:
# Generiere einen sicheren Key (z.B. openssl rand -base64 32)
- APP_KEY=base64:GeneriereMichBitteNeu12345678901234567=
- https://mailshield.deine-domain.de
# Admin Zugang
- ADMIN_SITE=false
- ADMIN_USER=admin
- ADMIN_PASS=admin123
# Cloudflare Turnstile
- CF_SITE_KEY=1x00000000000000000000AA
- CF_SECRET_KEY=1x0000000000000000000000000000000AA
- DB_PATH=/var/www/html/data/mailshield.sqlite
ports:
- "8080:80"
volumes:
- ./data:/var/www/html/data