mirror of
https://github.com/jbowdre/tailscale-docker.git
synced 2024-11-22 18:12:18 +00:00
7 lines
No EOL
191 B
Bash
7 lines
No EOL
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 |