You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to pass outgoing smtp json without custom docker image?
version: '3'
services:
mailhog:
image: mailhog/mailhog
restart: always
ports:
- 1025:1025 # SMTP port for sending emails
- 8025:8025 # Web UI for viewing emails
volumes:
- ./mailhog.cfg.json:/mailhog.cfg.json
command: ["-outgoing-smtp", "/mailhog.cfg.json"]
If i try it this way, - a directory is created instead of copying a file.
is there a way to pass .json to Mailhog in Docker without creating custom Docker Image?
The text was updated successfully, but these errors were encountered:
H,
Is there a way to pass outgoing smtp json without custom docker image?
If i try it this way, - a directory is created instead of copying a file.
is there a way to pass .json to Mailhog in Docker without creating custom Docker Image?
The text was updated successfully, but these errors were encountered: