0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Mailpit(テスト用メールサーバ)のdockerメモ

0
Posted at

docker-compose.yml

services:
  mailpit:
    image: axllent/mailpit
    ports:
      - "61002:1025" # SMTPポート
      - "61003:1110" # POP3ポート
      - "61004:8025" # Web画面: http://localhost:61004
    volumes:
      - ./.docker/mailpit:/data
    environment:
      TZ: Asia/Tokyo
      MP_MAX_MESSAGES: 5000
      MP_DATABASE: /data/mailpit.db
      MP_SMTP_AUTH_ACCEPT_ANY: 1
      MP_SMTP_AUTH_ALLOW_INSECURE: 1

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?