1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-26 00:38:37 +00:00
dockerfiles/pptpd/Dockerfile.debian
2017-05-08 07:05:07 +08:00

20 lines
357 B
Docker

#
# Dockerfile for pptpd
#
FROM debian:jessie
MAINTAINER kev<noreply@easypi.pro>
RUN apt-get update \
&& apt-get install -y iptables pptpd \
&& rm -rf /var/lib/apt/lists/*
COPY pptpd.conf /etc/
COPY chap-secrets /etc/ppp/
COPY pptpd-options /etc/ppp/
EXPOSE 1723
CMD iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE \
&& pptpd --fg