Skip to content

Commit 7d30580

Browse files
committed
Update TSFlow deployment instructions for Tailscale integration
Refine the Docker run command for TSFlow by updating environment variable names and adding a restart policy. This enhances clarity and ensures proper deployment alongside Tailscale.
1 parent e5a0e42 commit 7d30580

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

content/post/tsflow-tailscale/index.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,13 @@ TSFlow is designed to be deployed alongside your existing infrastructure with mi
9696
```bash
9797
# Run TSFlow with your Tailscale credentials
9898
docker run -d \
99+
--name tsflow \
99100
-p 8080:8080 \
100-
-e TAILSCALE_API_KEY=your-tailscale-api-key \
101-
-e TAILSCALE_TAILNET=your-tailnet-name \
101+
-e TAILSCALE_API_KEY=your-api-key \
102+
-e TAILSCALE_TAILNET=your-tailnet \
102103
-e ENVIRONMENT=production \
103-
--name tsflow \
104-
tsflow
104+
--restart unless-stopped \
105+
ghcr.io/rajsinghtech/tsflow:latest
105106

106107
# Access the dashboard
107108
open http://localhost:8080

0 commit comments

Comments
 (0)