Sorting by

×
zorruno wikki: OpenVPNSetup with Docker

Revision [5169]

This is an old revision of OpenVPNDocker made by ZorrUno on 2020-02-09 07:53:05.

 



OpenVPNSetup with Docker


Using information from: https://hub.docker.com/r/linuxserver/openvpn-as/

Note this the web setup is non-free and allows two clients only (unless paid). OpenVPN itself is free however.

Use this docker-compose.yml

version: "2"
services:
  openvpn-as:
	image: linuxserver/openvpn-as
	container_name: openvpn-as
	cap_add:
	  - NET_ADMIN
	environment:
	  - TZ=Pacific/Auckland
	volumes:
	  - path to data:/config
	ports:
	  - 943:943
	  - 9443:9443
	  - 1194:1194/udp
	restart: unless-stopped








--
CategoryMicrocontrol
CategoryHomeAutomation
CategoryRaspberryPi
CategoryLinux