mirror of
https://github.com/jbowdre/tailscale-docker.git
synced 2024-11-23 02:22:19 +00:00
7 lines
191 B
Bash
7 lines
191 B
Bash
|
#!/bin/ash
|
||
|
echo "Starting TS daemon"
|
||
|
tailscaled --tun=userspace-networking &
|
||
|
sleep 5
|
||
|
tailscale up --authkey=TAILSCALE_AUTH_KEY --hostname=simple-docker-compose
|
||
|
tailscale status
|
||
|
sleep infinity
|