Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tailscale Rock-on incomplete #328 #338

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions root.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"SmokePing": "smokeping.json",
"Sonarr": "sonarr.json",
"Syncthing": "syncthing.json",
"Tailscale": "tailscale.json",
"Tautulli": "tautulli.json",
"TeamSpeak3": "teamspeak3.json",
"Transmission with OpenVPN": "transmission-with-openvpn.json",
Expand Down
58 changes: 58 additions & 0 deletions tailscale.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"Tailscale": {
"containers": {
"tailscaled": {
"image": "tailscale/tailscale",
"tag": "stable",
"launch_order": 1,
"opts": [
[
"--net=host",
""
],
[
"--privileged",
""
],
[
"-v",
"/var/lib:/var/lib"
],
[
"-v",
"/dev/net/tun:/dev/net/tun"
],
[
"-e",
"TS_WEBUI=true"
],
[
"-e",
"TS_STATE_DIR=/statedir"
]
],
"volumes": {
"/statedir": {
"description": "Choose a Share for Tailscale's local configuration. Eg: create a Share called tailscale-config for this purpose alone.",
"label": "Config Storage",
"min_size": 1073741824
}
},
"ports": {
"8088": {
"description": "Tailscale local configuration WebUI port. Suggested port: 8088",
"host_default": 8088,
"label": "Web-UI port",
"protocol": "tcp",
"ui": true
}
}
}
},
"description": "Zero config VPN using WireGuard. Access your devices securely from anywhere.<p>Note: uses host networking with privileged network access.<p>Based on the official stable docker image: <a href='https://hub.docker.com/r/tailscale/tailscale' target='_blank'>https://hub.docker.com/r/tailscale/tailscale</a>, available for amd64 and arm64 architecture.</p>",
"version": "1.0",
"website": "https://tailscale.com/",
"icon": "https://tailscale.com/files/images/og-image.png",
"more_info": "Default <a href='https://tailscale.com/kb/1028/key-expiry/' target='_blank'>Key Expiry</a> is 180 days. Temporary extension possible.<p> Web interface enable as root <code>docker exec tailscaled tailscale web</code>"
}
}