MailHog/Dockerfile
Benoit Benedetti 6229a120f8 Working Dockerfile
You can test it from the docker hub https://registry.hub.docker.com/u/humboldtux/mailhog/
2014-12-30 19:52:31 +01:00

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"]