Docker Tailscale Script
Overview
This script will install Docker and Tailscale on a Debain or Ubuntu server.
View the Script
docker-tailscale.sh
#!/bin/bash
apt update
apt install curl -y
curl -fsSL https://get.docker.com | sh
curl -fsSL https://tailscale.com/install.sh | sh
Run the Script
This script will need to be ran on a Proxmox Host.
Run the script
wget https://docs.jonco.dev/scripts/docker-tailscale.sh && bash docker-tailscale.sh