mirror of
https://github.com/jbowdre/tailscale-docker.git
synced 2024-11-27 12:02:18 +00:00
use online image in docker-compose.yml example
This commit is contained in:
parent
54da987ff5
commit
4f665ae30c
1 changed files with 2 additions and 3 deletions
|
@ -1,11 +1,10 @@
|
||||||
services:
|
services:
|
||||||
tailscale:
|
tailscale:
|
||||||
build:
|
image: ghcr.io/jbowdre/tailscale-docker:latest
|
||||||
context: ./image/
|
|
||||||
container_name: tailscale
|
container_name: tailscale
|
||||||
environment:
|
environment:
|
||||||
TS_AUTHKEY: ${TS_AUTHKEY:?err} # from https://login.tailscale.com/admin/settings/authkeys
|
TS_AUTHKEY: ${TS_AUTHKEY:?err} # from https://login.tailscale.com/admin/settings/authkeys
|
||||||
TS_HOSTNAME: ${TS_HOSTNAME:-ts-docker}
|
TS_HOSTNAME: ${TS_HOSTNAME:-ts-docker} # optional hostname to use for this node
|
||||||
TS_STATE_DIR: "/var/lib/tailscale/" # store ts state in a local volume
|
TS_STATE_DIR: "/var/lib/tailscale/" # store ts state in a local volume
|
||||||
TS_TAILSCALED_EXTRA_ARGS: ${TS_TAILSCALED_EXTRA_ARGS:-} # optional extra args to pass to tailscaled
|
TS_TAILSCALED_EXTRA_ARGS: ${TS_TAILSCALED_EXTRA_ARGS:-} # optional extra args to pass to tailscaled
|
||||||
TS_EXTRA_ARGS: ${TS_EXTRA_ARGS:-} # optional extra flags to pass to tailscale up
|
TS_EXTRA_ARGS: ${TS_EXTRA_ARGS:-} # optional extra flags to pass to tailscale up
|
||||||
|
|
Loading…
Reference in a new issue