27 lines
793 B
YAML
27 lines
793 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
mail-notifier:
|
|
image: bertomlab/smtp-to-pushover
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: mail-notifier
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000" # Port pour l'interface web
|
|
- "2525:2525" # Port pour le serveur SMTP
|
|
volumes:
|
|
- ./container_data:/app/data # Persistance des données
|
|
- ./logs:/app/logs # Logs
|
|
environment:
|
|
- NODE_ENV=production
|
|
- SERVER_PORT=3000
|
|
- SMTP_PORT=2525
|
|
- SMTP_HOST=0.0.0.0
|
|
# Configurez ici vos variables d'environnement Pushover
|
|
- PUSHOVER_USER=u1chkifjzxpv15fcp3h56qs2gj1dup
|
|
- PUSHOVER_TOKEN=ah9uacr4mg5isbb86qeg2jyf35mxpk
|
|
- ADMIN_USERNAME=admin
|
|
- ADMIN_PASSWORD=motdepasse
|
|
- ENABLE_AUTH=true |