Skip to content

Instantly share code, notes, and snippets.

@bscott
Created June 1, 2025 20:19
Show Gist options
  • Save bscott/4671106df86e506d65353a1176253578 to your computer and use it in GitHub Desktop.
Save bscott/4671106df86e506d65353a1176253578 to your computer and use it in GitHub Desktop.
proxy:
image: artifacts.plane.so/makeplane/plane-proxy:${APP_RELEASE:-stable}
ports:
- target: 80
published: ${NGINX_PORT:-80}
protocol: tcp
mode: host
environment:
<<: *proxy-env
deploy:
replicas: 1
restart_policy:
condition: on-failure
depends_on:
- web
- api
- space
# Remove all TSProxy labels from here
web:
image: artifacts.plane.so/makeplane/plane-frontend:${APP_RELEASE:-stable}
environment:
<<: *web-env
depends_on:
- api
labels:
- tsdproxy.enable=true
- tsdproxy.name=plane-web
- tsdproxy.port=3000
tsdproxy:
image: almeidapaulopt/tsdproxy:2
volumes:
- ../../config:/config
- datadir_shared_plane:/data
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
- TS_NET_FORCE_LOGIN=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment