13 lines
257 B

10 years ago
10 years ago
10 years ago
  1. FROM debian:wheezy
  2. MAINTAINER Johannes Schickling "schickling.j@gmail.com"
  3. ADD install.sh install.sh
  4. RUN chmod +x install.sh && ./install.sh && rm install.sh
  5. # smtp port
  6. EXPOSE 1025
  7. # webserver port
  8. EXPOSE 1080
  9. CMD ["mailcatcher", "-f", "--ip=0.0.0.0"]