Add mailpit for development
Build and Push Lunchtime Images (Kaniko) / build-and-push (push) Successful in 1m13s

This commit is contained in:
Simon Gruber
2026-03-29 16:47:23 +02:00
parent fd27e6209b
commit a155294aad
2 changed files with 20 additions and 4 deletions
+4 -4
View File
@@ -3,13 +3,13 @@ app:
email:
enabled: true
smtp_host: "mail.example.com"
smtp_port: 465
smtp_username: "lunchtime@example.com"
smtp_host: "mailpit"
smtp_port: 1025
smtp_username: ""
smtp_password: ""
from_address: "lunchtime@example.com"
use_tls: false
use_ssl: true
use_ssl: false
announcements:
# - type: info
+16
View File
@@ -1,4 +1,16 @@
services:
mailpit:
image: axllent/mailpit:latest
container_name: lunchtime-mailpit
ports:
- "1025:1025"
- "8025:8025"
restart: unless-stopped
networks:
burger-network:
aliases:
- mailpit
nginx:
image: nginx:alpine
container_name: lunchtime-nginx
@@ -25,11 +37,15 @@ services:
- APP_ENV=production
- LOG_LEVEL=info
- DB_PATH=/app/data
- SMTP_HOST=mailpit
- SMTP_PORT=1025
restart: unless-stopped
networks:
burger-network:
aliases:
- backend
depends_on:
- mailpit
frontend:
build: