From 1f9789f2f0131cd3a48646a37218088880cb3d41 Mon Sep 17 00:00:00 2001 From: Micha Date: Thu, 26 Mar 2026 12:31:14 +0000 Subject: [PATCH] Version 1 --- apps/mail-archiver/docker-compose.yml | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 apps/mail-archiver/docker-compose.yml diff --git a/apps/mail-archiver/docker-compose.yml b/apps/mail-archiver/docker-compose.yml new file mode 100644 index 0000000..541cee5 --- /dev/null +++ b/apps/mail-archiver/docker-compose.yml @@ -0,0 +1,32 @@ +version: "3.9" + +services: + mail-archiver: + image: s1t5/mailarchiver + container_name: mail-archiver + restart: unless-stopped + + environment: + TZ: Europe/Berlin + + # DB Connection komplett als Variable + ConnectionStrings__DefaultConnection: ${MAILARCHIVER_DB_CONNECTION} + + # Login Passwort + Authentication__Password: ${MAILARCHIVER_AUTH_PASSWORD} + + volumes: + - /mnt/user/appdata/mailarchiver/data-protection-keys:/app/DataProtection-Keys + + networks: + - backend_net + + ports: + - "5000:5000" + + security_opt: + - no-new-privileges:true + +networks: + backend_net: + external: true \ No newline at end of file