homelab/services/dockerino/twingate/docker-compose.yml
gaia 665e5e1f40
All checks were successful
Picsur Deploy / Validate Picsur Compose (pull_request) Successful in 12s
Picsur Deploy / Deploy Picsur to Dockerino (pull_request) Has been skipped
refactor: move docker/ → services/
- docker/ renamed to services/ (single source of truth for compose files)
- Update picsur.yml workflow paths from docker/dockerino/ to services/dockerino/
2026-04-09 12:13:10 -03:00

17 lines
510 B
YAML

version: '3.8'
services:
twingate:
image: twingate/connector:latest
container_name: twingate
restart: unless-stopped
network_mode: host
environment:
TWINGATE_NETWORK: ${TWINGATE_NETWORK:-}
TWINGATE_ACCESS_TOKEN: ${TWINGATE_ACCESS_TOKEN:-}
TWINGATE_REFRESH_TOKEN: ${TWINGATE_REFRESH_TOKEN:-}
# NOTA: healthcheck desabilitado pois Twingate não expõe endpoint HTTP
# O container é considered healthy mesmo sem resposta HTTP
healthcheck:
disable: true