- 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>
18 lines
468 B
Plaintext
Executable File
18 lines
468 B
Plaintext
Executable File
minio:
|
|
image: 'minio/minio:latest'
|
|
ports:
|
|
- '${FORWARD_MINIO_PORT:-9000}:9000'
|
|
- '${FORWARD_MINIO_CONSOLE_PORT:-8900}:8900'
|
|
environment:
|
|
MINIO_ROOT_USER: 'sail'
|
|
MINIO_ROOT_PASSWORD: 'password'
|
|
volumes:
|
|
- 'sail-minio:/data'
|
|
networks:
|
|
- sail
|
|
command: minio server /data --console-address ":8900"
|
|
healthcheck:
|
|
test: ["CMD", "mc", "ready", "local"]
|
|
retries: 3
|
|
timeout: 5s
|