Skip to content

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
  • Port 8080 available for Dashboard

Note

Most users should prefer Docker deployment. Standalone mode is for development.

Last updated on