Last active
August 11, 2024 10:35
-
-
Save ashinga48/5b137ab8be93a146afb1aa4722641ffd to your computer and use it in GitHub Desktop.
dockovpn docker compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
volumes: | |
dockovpn: | |
services: | |
dockovpn: | |
image: alekslitvinenk/openvpn | |
container_name: dockovpn | |
restart: always | |
cap_add: | |
- NET_ADMIN | |
ports: | |
- '1194:1194/udp' | |
volumes: | |
- dockovpn:/opt/Dockovpn_data | |
command: | |
- --regenerate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment