mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 14:24:03 +00:00
6229a120f8
You can test it from the docker hub https://registry.hub.docker.com/u/humboldtux/mailhog/
8 lines
128 B
Docker
8 lines
128 B
Docker
# Base docker image
|
|
FROM golang:latest
|
|
|
|
RUN go get github.com/mailhog/MailHog
|
|
|
|
EXPOSE 1025 8025
|
|
|
|
ENTRYPOINT ["/go/bin/MailHog"]
|