Skip to content

Commit 001dec6

Browse files
committed
chore: Update Mailpit logo to use SVG format
1 parent cf9c62c commit 001dec6

File tree

2 files changed

+22
-9
lines changed

2 files changed

+22
-9
lines changed

templates/compose/mailpit.yaml

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,33 @@
11
# documentation: https://mailpit.axllent.org/docs/
22
# slogan: Email & SMTP testing tool with API for developers
33
# tags: mailpit,email,testing,smtp
4-
# logo: svgs/mailpit.png
4+
# logo: svgs/mailpit.svg
55
# port: 8025
66

77
services:
88
mailpit:
99
image: axllent/mailpit
10-
container_name: mailpit
1110
volumes:
1211
- "mailpit-data:/data"
13-
ports:
14-
- "1025:1025"
12+
- type: bind
13+
source: ./htpasswd
14+
target: /data/htpasswd
15+
isDirectory: false
16+
content: ""
1517
environment:
1618
- SERVICE_FQDN_MAILPIT_8025
17-
- MP_MAX_MESSAGES: 5000
18-
- MP_DATABASE: /data/mailpit.db
19-
- MP_SMTP_AUTH_ACCEPT_ANY: 1
20-
- MP_SMTP_AUTH_ALLOW_INSECURE: 1
19+
- MP_MAX_MESSAGES=5000
20+
- MP_DATABASE=/data/mailpit.db
21+
- MP_SMTP_AUTH_ACCEPT_ANY=1
22+
- MP_SMTP_AUTH_ALLOW_INSECURE=1
23+
- MP_UI_AUTH_FILE=/data/htpasswd
24+
healthcheck:
25+
test:
26+
[
27+
"CMD",
28+
"/mailpit",
29+
"readyz",
30+
]
31+
interval: 5s
32+
timeout: 20s
33+
retries: 10

templates/service-templates.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)