Docker image build for the RWTS headscale fork with suggestExitNodes support.
docker pull ghcr.io/realworldtech/headscale-docker:latestIn your compose.yaml:
services:
headscale:
image: ghcr.io/realworldtech/headscale-docker:latest
# ...This image adds a suggestExitNodes ACL policy field to headscale, allowing
administrators to designate specific exit nodes for Tailscale client
auto-selection. See the fork branch
for details.
docker build -t headscale-custom:latest .To build from a different branch or repo:
docker build \
--build-arg HEADSCALE_REPO=https://github.com/realworldtech/headscale.git \
--build-arg HEADSCALE_REF=feature/suggest-exit-nodes \
-t headscale-custom:latest .