浏览代码

add tailscale app & icon (#356)

SegoCode 2 年之前
父节点
当前提交
57a45a3c12
共有 2 个文件被更改,包括 33 次插入0 次删除
  1. 二进制
      images/tailscale-icon.png
  2. 33 0
      template/apps/tailscale.json

二进制
images/tailscale-icon.png


+ 33 - 0
template/apps/tailscale.json

@@ -0,0 +1,33 @@
+{
+	"categories": [
+		"Other",
+		"VPN"
+	],
+	"command": "tailscale up --authkey=$AUTH_KEY",
+	"description": "Connect your devices and users together in your own secure Zero config virtual private network. ",
+	"env": [
+		{
+			"AUTH_KEY": ""
+		}
+	],
+	"image32": "tailscale/tailscale:latest",
+	"image64": "tailscale/tailscale:latest",
+	"logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/tailscale-icon.png",
+	"name": "tailscale",
+	"officialDoc": "https://hub.docker.com/r/tailscale/tailscale",
+	"platform": "linux",
+	"restart_policy": "unless-stopped",
+	"title": "Tailscale",
+	"type": 1,
+	"volumes": [
+		{
+			"bind": "/portainer/Files/AppData/Config/tailscale",
+			"container": "/var/lib/tailscale"
+		},
+		{
+			"bind": "/dev/net/tun",
+			"container": "/dev/net/tun"
+		}
+	],
+	"webpage": "https://tailscale.com/"
+}