Services configuration

Services configuration

To add a service to your TSDProxy instance, you need to add a label to your service cobtainer.

tsdproxy.enable

Just add the label tsdproxy.enable to true and restart you service. The container will be started and TSDProxy will be enabled.

labels:
  tsdproxy.enable: "true"

TSProxy will use container name as Tailscale server, and will use one exposed port to proxy traffic.

tsdproxy.name

If you define a name different from the container name, you can define it with the label tsdproxy.name and it will be used as the Tailscale server name.

labels:
  tsdproxy.enable: "true"
  tsdproxy.name: "myserver"

tsdproxy.container_port

If you want to define a different port than the default one, you can define it with the label tsdproxy.container_port. This is useful if the container has multiple exposed ports or if the container is running in network_mode=host.

ports:
  - 8081:8080
  - 8000:8000
labels:
  tsdproxy.enable: "true"
  tsdproxy.name: "myserver"
  tsdproxy.container_port: 8080
Note that the port used in the tsdproxy.container_port label is the port used internal in the container and not the exposed port.

tsdproxy.ephemeral

If you want to use an ephemeral container, you can define it with the label tsdproxy.ephemeral.

labels:
  tsdproxy.enable: "true"
  tsdproxy.name: "myserver"
  tsdproxy.ephemeral: "true"

tsdproxy.webclient

If you want to enable the Tailscale webclient (port 5252), you can define it with the label tsdproxy.webclient.

labels:
  tsdproxy.enable: "true"
  tsdproxy.name: "myserver"
  tsdproxy.webclient: "true"

tsdproxy.tsnet_verbose

If you want to enable Tailscale’s verbose mode, you can define it with the label tsdproxy.tsnet_verbose.

labels:
  tsdproxy.enable: "true"
  tsdproxy.name: "myserver"
  tsdproxy.tsnet_verbose: "true"

tsdproxy.funnel

To enable funnel mode, you can define it with the label tsdproxy.funnel.

labels:
  tsdproxy.enable: "true"
  tsdproxy.name: "myserver"
  tsdproxy.funnel: "true"
Last updated on