chore: Update Mailpit logo to use SVG format

This commit is contained in:
Andras Bacsai
2024-09-30 16:31:36 +02:00
parent cf9c62cbf0
commit 001dec6604
2 changed files with 22 additions and 9 deletions

View File

@@ -1,20 +1,33 @@
# documentation: https://mailpit.axllent.org/docs/
# slogan: Email & SMTP testing tool with API for developers
# tags: mailpit,email,testing,smtp
# logo: svgs/mailpit.png
# logo: svgs/mailpit.svg
# port: 8025
services:
mailpit:
image: axllent/mailpit
container_name: mailpit
volumes:
- "mailpit-data:/data"
ports:
- "1025:1025"
- type: bind
source: ./htpasswd
target: /data/htpasswd
isDirectory: false
content: ""
environment:
- SERVICE_FQDN_MAILPIT_8025
- MP_MAX_MESSAGES: 5000
- MP_DATABASE: /data/mailpit.db
- MP_SMTP_AUTH_ACCEPT_ANY: 1
- MP_SMTP_AUTH_ALLOW_INSECURE: 1
- MP_MAX_MESSAGES=5000
- MP_DATABASE=/data/mailpit.db
- MP_SMTP_AUTH_ACCEPT_ANY=1
- MP_SMTP_AUTH_ALLOW_INSECURE=1
- MP_UI_AUTH_FILE=/data/htpasswd
healthcheck:
test:
[
"CMD",
"/mailpit",
"readyz",
]
interval: 5s
timeout: 20s
retries: 10

File diff suppressed because one or more lines are too long