1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/strongswan/Dockerfile

26 lines
543 B
Docker
Raw Normal View History

2016-06-27 19:16:42 +00:00
#
# Dockerfile for ipsec
#
FROM alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2016-06-27 19:16:42 +00:00
RUN set -xe \
&& apk add --no-cache iptables openssl strongswan util-linux \
&& ln -sf /etc/ipsec.d/ipsec.conf /etc/ipsec.conf \
&& ln -sf /etc/ipsec.d/ipsec.secrets /etc/ipsec.secrets
2016-06-30 15:46:01 +00:00
COPY init.sh /init.sh
COPY docker-entrypoint.sh /entrypoint.sh
2016-06-27 19:16:42 +00:00
VOLUME /etc/ipsec.d /etc/strongswan.d
2016-06-30 15:46:01 +00:00
ENV VPN_DEVICE=eth0
ENV VPN_NETWORK=10.20.30.0/24
2016-06-30 16:09:28 +00:00
ENV LAN_NETWORK=192.168.0.0/16
2016-06-27 20:39:35 +00:00
ENV VPN_DNS=8.8.8.8,8.8.4.4
2016-06-27 19:16:42 +00:00
EXPOSE 500/udp 4500/udp
2016-06-30 15:46:01 +00:00
ENTRYPOINT ["/entrypoint.sh"]