1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00

add openvpn-arm

This commit is contained in:
kev 2016-07-11 15:26:35 +08:00
parent afc34a5fc2
commit 517c560576
3 changed files with 25 additions and 1 deletions

@ -179,7 +179,8 @@ A collection of delicious docker recipes.
- [x] ocserv :+1:
- [x] openconnect
- [x] openvpn :+1:
- [x] openconnect-arm
- [x] openvpn-arm
- [x] pptp
- [x] pptpd
- [x] shadowvpn

14
openvpn/arm/Dockerfile Normal file

@ -0,0 +1,14 @@
#
# Dockerfile for openvpn-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
RUN apk add --no-cache openvpn
VOLUME /etc/openvpn
WORKDIR /etc/openvpn
ENTRYPOINT ["openvpn"]
CMD ["--config", "openvpn.conf"]

@ -0,0 +1,9 @@
openvpn:
image: easypi/openvpn-arm
command: --config pi.ovpn
volumes:
- ./data:/etc/openvpn
cap_add:
- NET_ADMIN
net: host
restart: always