19 lines
511 B
YAML
19 lines
511 B
YAML
services:
|
|
|
|
## tsdproxy
|
|
tsdproxy:
|
|
image: almeidapaulopt/tsdproxy:latest
|
|
container_name: tsdproxy
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- tsdproxydata:/data
|
|
environment:
|
|
# Get AuthKey from your Tailscale account
|
|
- TSDPROXY_AUTHKEY=${TSD_PROXY_AUTH}
|
|
# Address of docker server (access to example.com ports)
|
|
- TSDPROXY_HOSTNAME=${TSD_PROXY_HOSTNAME}
|
|
- DOCKER_HOST=unix:///var/run/docker.sock
|
|
restart: always
|
|
|
|
volumes:
|
|
tsdproxydata:
|