Adding openvpn configuration draft.
This commit is contained in:
parent
5c3a383ca7
commit
c5c9087521
3
openvpn/README.md
Normal file
3
openvpn/README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Instructions
|
||||||
|
|
||||||
|
See https://hub.docker.com/r/kylemanna/openvpn
|
16
openvpn/docker-compose.yml
Normal file
16
openvpn/docker-compose.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
version: '3.7'
|
||||||
|
|
||||||
|
services:
|
||||||
|
openvpn:
|
||||||
|
image: kylemanna/openvpn
|
||||||
|
container_name: openvpn
|
||||||
|
restart: unless-stopped
|
||||||
|
cap_add:
|
||||||
|
- "NET_ADMIN"
|
||||||
|
ports:
|
||||||
|
- "1194:1194/udp"
|
||||||
|
volumes:
|
||||||
|
- "ovpn-data:/etc/openvpn"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
ovpn-data:
|
Loading…
Reference in a new issue