From bfa04936b284bbe6b918adfc47ac477204557095 Mon Sep 17 00:00:00 2001 From: Simon Gruber Date: Tue, 5 May 2026 20:06:47 +0200 Subject: [PATCH] Retain mailpit data --- src/compose.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/compose.yml b/src/compose.yml index bf3ec7d..7a24ec4 100644 --- a/src/compose.yml +++ b/src/compose.yml @@ -36,15 +36,20 @@ services: container_name: lunchtime-mailpit ports: - "8025:8025" + volumes: + - mailpit-data:/data restart: unless-stopped nginx: image: nginx:alpine ports: - - "8080:8080" + - "8020:8080" volumes: - ../nginx.conf:/etc/nginx/conf.d/default.conf:ro depends_on: - backend - frontend - restart: unless-stopped \ No newline at end of file + restart: unless-stopped + +volumes: + mailpit-data: \ No newline at end of file