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:
parent
afc34a5fc2
commit
517c560576
@ -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
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"]
|
9
openvpn/arm/docker-compose.yml
Normal file
9
openvpn/arm/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user