1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:31 +02: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

View File

@ -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
View 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"]

View File

@ -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