Connecting with existing tunnel issue

How do I use an existing tunnel deployed from docker as this keeps creating a new tunnel instead


version: '2.3' services: trilium: container_name: trilium image: zadam/trilium:latest restart: unless-stopped ports: - "8090:8080" volumes: - /home/user/trilium_data:/home/node/trilium-data networks: - achllys_nw cloudflare_tunnel: container_name: cloudflare_tunnel image: cloudflare/cloudflared:latest restart: unless-stopped command: tunnel run network_mode: host environment: - TUNNEL_TOKEN= networks: achllys_nw: driver: bridge
Was this page helpful?