- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
537 B
Plaintext
Executable File
20 lines
537 B
Plaintext
Executable File
mongodb:
|
|
image: 'mongodb/mongodb-atlas-local:latest'
|
|
environment:
|
|
- MONGODB_INITDB_ROOT_USERNAME=${MONGODB_USERNAME:-}
|
|
- MONGODB_INITDB_ROOT_PASSWORD=${MONGODB_PASSWORD:-}
|
|
volumes:
|
|
- 'sail-mongodb:/data/db'
|
|
ports:
|
|
- '${FORWARD_MONGODB_PORT:-27017}:27017'
|
|
networks:
|
|
- sail
|
|
healthcheck:
|
|
test:
|
|
- CMD
|
|
- mongosh
|
|
- 'mongodb://localhost:27017/admin'
|
|
- '--eval=db.runCommand({ping:1})'
|
|
retries: 3
|
|
timeout: 5s
|