You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
257 B
13 lines
257 B
FROM debian:wheezy
|
|
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
|
|
|
|
ADD install.sh install.sh
|
|
RUN chmod +x install.sh && ./install.sh && rm install.sh
|
|
|
|
# smtp port
|
|
EXPOSE 1025
|
|
|
|
# webserver port
|
|
EXPOSE 1080
|
|
|
|
CMD ["mailcatcher", "-f", "--ip=0.0.0.0"]
|