tailscale-docker/docker-compose-example/docker-compose.yml
John Bowdre d48e206786 organizational cleanup
- add my docker-compose example, remove others
- ditch nginx image
- move tailscale image from images/tailscale to image/
2023-12-28 13:33:50 -06:00

15 lines
510 B
YAML

services:
tailscale:
build:
context: ./image/
container_name: tailscale
environment:
TS_AUTH_KEY: ${TS_AUTH_KEY:?err} # from https://login.tailscale.com/admin/settings/authkeys
TS_HOSTNAME: ${TS_HOSTNAME:-ts-docker}
TS_STATE_ARG: "/var/lib/tailscale/tailscale.state" # store ts state in a local volume
TS_SERVE_PORT: ${TS_SERVE_PORT:-}
volumes:
- ./ts_data:/var/lib/tailscale/
myservice:
image: nginxdemos/hello
network_mode: "service:tailscale"