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/ # documentation: https://mailpit.axllent.org/docs/
# slogan: Email & SMTP testing tool with API for developers # slogan: Email & SMTP testing tool with API for developers
# tags: mailpit,email,testing,smtp # tags: mailpit,email,testing,smtp
# logo: svgs/mailpit.png # logo: svgs/mailpit.svg
# port: 8025 # port: 8025
services: services:
mailpit: mailpit:
image: axllent/mailpit image: axllent/mailpit
container_name: mailpit
volumes: volumes:
- "mailpit-data:/data" - "mailpit-data:/data"
ports: - type: bind
- "1025:1025" source: ./htpasswd
target: /data/htpasswd
isDirectory: false
content: ""
environment: environment:
- SERVICE_FQDN_MAILPIT_8025 - SERVICE_FQDN_MAILPIT_8025
- MP_MAX_MESSAGES: 5000 - MP_MAX_MESSAGES=5000
- MP_DATABASE: /data/mailpit.db - MP_DATABASE=/data/mailpit.db
- MP_SMTP_AUTH_ACCEPT_ANY: 1 - MP_SMTP_AUTH_ACCEPT_ANY=1
- MP_SMTP_AUTH_ALLOW_INSECURE: 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