We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daf8323 commit 5a6da9dCopy full SHA for 5a6da9d
docker-compose.yaml
@@ -53,6 +53,20 @@ services:
53
volumes:
54
- postgres_data17:/var/lib/postgresql/data
55
56
+ mailpit:
57
+ image: axllent/mailpit
58
+ container_name: mailpit
59
+ restart: unless-stopped
60
+ volumes:
61
+ - mailpit-data:/data
62
+ ports:
63
+ - 8025:8025
64
+ environment:
65
+ MP_MAX_MESSAGES: 5000
66
+ MP_DATABASE: /data/mailpit.db
67
+ MP_SMTP_AUTH_ACCEPT_ANY: 1
68
+ MP_SMTP_AUTH_ALLOW_INSECURE: 1
69
+
70
web:
71
<<: *base_server_setup
72
command: ["/code/misc/dev/run_web.sh"]
@@ -67,3 +81,4 @@ services:
81
82
postgres_data17:
83
ipython_data_local:
84
+ mailpit-data:
0 commit comments