2018-06-30 15:54:13 +09:00
|
|
|
# Dockerfile for L2TP/IPSec VPN Server
|
2019-06-09 14:29:29 +09:00
|
|
|
# Copyright (C) 2018 - 2019 Teddysun <i@teddysun.com>
|
2018-06-30 15:54:13 +09:00
|
|
|
|
|
|
|
FROM debian:stretch
|
2018-07-02 20:31:28 +09:00
|
|
|
LABEL maintainer="Teddysun <i@teddysun.com>"
|
2018-06-30 15:54:13 +09:00
|
|
|
|
|
|
|
RUN set -ex \
|
2018-08-11 20:46:52 +09:00
|
|
|
&& printf "deb http://deb.debian.org/debian sid main" > /etc/apt/sources.list.d/sid.list \
|
|
|
|
&& apt-get update \
|
|
|
|
&& apt-get -t sid install -y --no-install-recommends libreswan xl2tpd \
|
|
|
|
&& apt-get install -y --no-install-recommends wget iproute2 openssl ca-certificates kmod net-tools iptables \
|
|
|
|
&& apt-get -y autoremove \
|
|
|
|
&& apt-get -y clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2018-06-30 15:54:13 +09:00
|
|
|
|
|
|
|
COPY ./ipsec /etc/init.d/ipsec
|
|
|
|
COPY ./l2tp.sh /usr/bin/l2tp
|
|
|
|
COPY ./l2tpctl.sh /usr/bin/l2tpctl
|
|
|
|
RUN chmod 755 /etc/init.d/ipsec /usr/bin/l2tp /usr/bin/l2tpctl
|
|
|
|
|
|
|
|
VOLUME /lib/modules
|
|
|
|
|
|
|
|
EXPOSE 500/udp 4500/udp
|
|
|
|
|
2018-08-11 20:46:52 +09:00
|
|
|
CMD [ "l2tp" ]
|