1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-26 05:27:31 +02:00
dockerfiles/pptpd/Dockerfile

20 lines
360 B
Docker
Raw Normal View History

2015-06-27 18:32:24 +08:00
#
# Dockerfile for pptpd
#
2015-06-28 10:18:47 +08:00
FROM debian:jessie
2015-06-27 18:32:24 +08:00
MAINTAINER kev<noreply@datageek.info>
2015-06-28 10:21:57 +08:00
RUN apt-get update \
2015-06-28 11:42:35 +08:00
&& apt-get install -y iptables pptpd \
2015-06-28 10:18:47 +08:00
&& rm -rf /var/lib/apt/lists/*
2015-06-27 18:32:24 +08:00
2015-06-28 11:42:35 +08:00
COPY pptpd.conf /etc/
COPY chap-secrets /etc/ppp/
2015-06-28 11:12:07 +08:00
COPY pptpd-options /etc/ppp/
2015-06-27 18:32:24 +08:00
2015-06-28 12:36:09 +08:00
EXPOSE 1723
2015-06-28 11:53:23 +08:00
CMD iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE \
&& pptpd --fg