1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:36 +02:00
dockerfiles/pptpd/Dockerfile

20 lines
341 B
Docker
Raw Normal View History

2015-06-27 12:32:24 +02:00
#
# Dockerfile for pptpd
#
2015-06-28 11:14:56 +02:00
FROM alpine
2017-05-08 01:05:07 +02:00
MAINTAINER kev <noreply@easypi.pro>
2015-06-27 12:32:24 +02:00
2016-06-28 11:28:49 +02:00
RUN apk add --no-cache iptables ppp pptpd
2015-06-27 12:32:24 +02:00
2015-06-28 05:42:35 +02:00
COPY pptpd.conf /etc/
COPY chap-secrets /etc/ppp/
2015-06-28 05:12:07 +02:00
COPY pptpd-options /etc/ppp/
2015-06-27 12:32:24 +02:00
2015-06-28 06:36:09 +02:00
EXPOSE 1723
2016-02-23 09:52:04 +02:00
CMD set -xe \
&& iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE \
2015-06-28 11:14:56 +02:00
&& pptpd \
2015-06-28 21:57:52 +02:00
&& syslogd -n -O /dev/stdout