Last active
May 7, 2022 19:34
-
-
Save SolomonHD/7b101d4d26cf29445aca4da7875fa9e6 to your computer and use it in GitHub Desktop.
wireguard_yacht_template
This file contains hidden or 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
[{ | |
"type": 1, | |
"title": "WireGuard", | |
"name": "wireguard", | |
"description": "WireGuard is an extremely simple yet fast and modern VPN that utilizes state-of-the-art cryptography.", | |
"logo": "https://cdn.freelogovectors.net/wp-content/uploads/2021/10/wireguard-logo-freelogovectors.net_-400x400.png", | |
"image": "linuxserver/wireguard:latest", | |
"categories": [ | |
"Other" | |
], | |
"platform": "linux", | |
"restart_policy": "unless-stopped", | |
"ports": [{ | |
"VPN Tunnel": "51820:51820/udp" | |
} | |
], | |
"volumes": [{ | |
"container": "/config", | |
"bind": "!config/WireGuard" | |
}, { | |
"container": "/lib/modules", | |
"bind": "/lib/modules" | |
} | |
], | |
"sysctls": [{ | |
"net.ipv4.conf.all.src_valid_mark": "1" | |
} | |
], | |
"cap_add": [ | |
"NET_ADMIN", | |
"SYS_MODULE" | |
], | |
"env": [{ | |
"name": "PUID", | |
"label": "PUID", | |
"default": "!PUID" | |
}, { | |
"name": "PGID", | |
"label": "PGID", | |
"default": "!PGID" | |
}, { | |
"name": "SERVERPORT", | |
"label": "SERVERPORT", | |
"default": "51820" | |
}, { | |
"name": "SERVERURL", | |
"label": "SERVERURL", | |
"default": "auto" | |
}, { | |
"name": "PEERS", | |
"label": "PEERS", | |
"default": "1" | |
}, { | |
"name": "PEERDNS", | |
"label": "PEERDNS", | |
"default": "auto" | |
}, { | |
"name": "INTERNAL_SUBNET", | |
"label": "INTERNAL_SUBNET", | |
"default": "10.13.13.0" | |
}, { | |
"name": "ALLOWEDIPS", | |
"label": "ALLOWEDIPS", | |
"default": "0.0.0.0/0" | |
}, { | |
"name": "LOG_CONFS", | |
"label": "LOG_CONFS", | |
"default": "true" | |
}, | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment