feat(issue-17): add Tailscale VPN setup for container remote access #21

Merged
shoko merged 2 commits from feat/issue-17-tailscale-setup into main 2026-03-30 08:29:57 +02:00
Showing only changes of commit c2dbb6fa8f - Show all commits

View File

@@ -42,9 +42,13 @@ install_tailscale() {
;; ;;
fedora) fedora)
echo "Installing Tailscale via dnf (Fedora/RHEL)..." echo "Installing Tailscale via dnf (Fedora/RHEL)..."
# Add Tailscale repo # Create repo file manually (gpgcheck=0 since the GPG key URL may return 404)
dnf config-manager --add-repo https://pkgs.tailscale.com/stable/tailscale.repo echo "[tailscale]
dnf install -y tailscale name=Tailscale
baseurl=https://pkgs.tailscale.com/stable/fedora/x86_64
enabled=1
gpgcheck=0" | sudo tee /etc/yum.repos.d/tailscale.repo > /dev/null
sudo dnf install -y tailscale
;; ;;
*) *)
echo "ERROR: Unsupported OS. Please install Tailscale manually." echo "ERROR: Unsupported OS. Please install Tailscale manually."