Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,27 @@ As long as this is on a persistent volume, the auth key only needs to be provide
[tag]: https://tailscale.com/kb/1068/acl-tags/
[os.UserConfigDir]: https://pkg.go.dev/os#UserConfigDir

## Docker Compose

To run golink via Docker Compose:

```yaml
volumes:
data:

services:
golink:
image: ghcr.io/tailscale/golink:main
container_name: golink
restart: unless-stopped
volumes:
- 'data:/home/nonroot'
```

To initialize the container with an auth key run:

docker compose run --rm --env 'TS_AUTHKEY=tskey-auth-<key>' golink

## MagicDNS

When golink joins your tailnet, it will attempt to use "go" as its node name,
Expand Down
Loading