Advertisement
y2kbug

OpenVPN-AS

Sep 29th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. version: "3.8"
  2. services:
  3. openvpn-as:
  4. image: linuxserver/openvpn-as
  5. container_name: openvpn-as
  6. environment:
  7. - PUID=1000
  8. - PGID=1000
  9. - TZ=Asia/Hong_Kong
  10. volumes:
  11. - type: bind
  12. source: ./config
  13. target: /config
  14. ports:
  15. - 943:943
  16. - 9443:9443
  17. - 1194:1194/udp
  18. network_mode: bridge
  19. cap_add:
  20. - NET_ADMIN
  21. restart: unless-stopped
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement