tailscale-dev / docker-mod

The home for our universal Docker mod
BSD 3-Clause "New" or "Revised" License
58 stars 27 forks source link

The mod doesn't work with the current version of tailscale #9

Closed si14 closed 11 months ago

si14 commented 11 months ago

Tailscale 1.52.0 changed the tailscale serve CLI, which means this docker mode doesn't work anymore.

Current main call:

tailscale serve "${TAILSCALE_SERVE_MODE}":443 / http://localhost:"${TAILSCALE_SERVE_PORT}"

I believe this should be

tailscale serve --bg --https=443 http://localhost:"${TAILSCALE_SERVE_PORT}"

instead (but I'm not fully sure if this is a full equivalent).

rodhfr commented 11 months ago

happend with me also

si14 commented 11 months ago

Thanks a ton @timtailscale !