Skip to content

Instantly share code, notes, and snippets.

@hyzyla
Created July 19, 2022 17:06
Show Gist options
  • Save hyzyla/3b12cb9280e92acc4d7830480bc8cb80 to your computer and use it in GitHub Desktop.
Save hyzyla/3b12cb9280e92acc4d7830480bc8cb80 to your computer and use it in GitHub Desktop.
maildev in docker-compose
version: "3.7"
services:
maildev:
image: maildev/maildev:1.1.1
environment:
MAILDEV_INCOMING_USER: user
MAILDEV_INCOMING_PASS: pass
ports:
# WebUI
# http://localhost:1080
- "1080:1080"
# SMTP server
# smtp://user:pass@maildev:1025
- "1025:1025"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment