Skip to content
Standalone Deployment

Standalone Deployment

TSDProxy can be deployed as a standalone binary.

Download

Download from GitHub Releases. Available for linux/amd64, linux/arm64, darwin/amd64, darwin/arm64, windows/amd64.

Running

tsdproxy --config /etc/tsdproxy/tsdproxy.yaml

Systemd Service

[Unit]
Description=TSDProxy
After=network.target docker.service
Requires=docker.service

[Service]
Type=simple
ExecStart=/usr/local/bin/tsdproxy --config /etc/tsdproxy/tsdproxy.yaml
Restart=always
RestartSec=10

[Install]
WantedBy=multi-user.target

Requirements

  • Docker daemon accessible (for Docker provider)
  • Port 8080 available for Dashboard (configurable via http.port)

Note

Standalone mode is useful for running TSDProxy directly on a host without Docker, or for development. Most users should use the Docker deployment described in Getting Started.

Last updated on