192.168.1.135 , you need to know which the the IP (internal to the docker network) of the...
services: cloudflared: image: erisamoe/cloudflared container_name: calibre-web-cloudflared restart: unless-stopped volumes: - ./cloudflared:/etc/cloudflared command: --hostname mylibrary.example.com --name mylibrary --url http://nginx:80 # ^-- https://github.com/Erisa/cloudflared-docker/...
dockermulti-platformdocker-composealpine-linuxdns-over-httpsdns-proxycloudflared UpdatedJun 29, 2024 Dockerfile fscarmen/sba Star173 Code Issues Pull requests Argo + Sing-box + CDN for VPS one-click script. 一键脚本 ,Tcp trutal + 多路复用。
Visit the following GitHub repositories for more Docker samples. Awesome Compose: A curated repository containing over 30 Docker Compose samples. These samples offer a starting point for how to integrate different services using a Compose file. Docker Samples: A collection of over 30 repositories that...
To make the certificates available inside the container, you need to mount the directory you created into the Docker container. Here’s an example modification for a Docker Compose file: services:nginx:image:nginx:latestports:-"443:443"volumes:-/etc/nginx/certs:/etc/nginx/cer...
Visit the following GitHub repositories for more Docker samples. Awesome Compose: A curated repository containing over 30 Docker Compose samples. These samples offer a starting point for how to integrate different services using a Compose file. Docker Samples: A collection of over 30 repositories that...
A docker-compose example with a Zero Trust dashboard setup would be: services: cloudflared: image: neil1145/cloudflared restart: unless-stopped command: tunnel run environment: - TUNNEL_TOKEN=${TUNNEL_TOKEN} depends_on: - mycontainer Where an .env file in the same directory contains TUNNEL_...
/config Optional The path to the directory where the config.json file containing the Cloudflare token and start status will be saved.example docker-compose.yaml:services: cloudflared: image: wisdomsky/cloudflared-web:latest restart: unless-stopped network_mode: host volumes: - /mnt/storage/cloudfl...
My docker-compose.yml has this line for the upstream servers: environment: - "TUNNEL_DNS_UPSTREAM=https://dns.quad9.net/dns-query,https://dns.google/dns-query,https://1.1.1.1/dns-query" The errors I see are as follows: time="2022-07-15T03:41:14Z" level=error msg="failed to con...
docker-compose version: '3' services: cloudflared: image: cloudflared:latest container_name: cloudflared restart: unless-stopped ports: - 127.0.0.1:53:53 - 127.0.0.1:53:53/udp logging: driver: "json-file" options: max-size: "10m" max-file: "3" compress: "true" Run docker-compose ...