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