feat: add cloudflared
This commit is contained in:
@@ -27,6 +27,7 @@ The backbone of the operation. Without these, nothing talks to anything.
|
||||
|
||||
* **DNS / AdBlocker**: `dns/adguard` - AdGuard Home for network-wide ad blocking and DNS management.
|
||||
* **Reverse Proxy**: `proxies/npm` - Nginx Proxy Manager to handle SSL and route traffic.
|
||||
* **Remote Access**: `remote_access/cloudflared` - Cloudflare Tunnel for secure remote access.
|
||||
|
||||
```text
|
||||
__ __ _
|
||||
@@ -67,6 +68,8 @@ Because all work and no play makes the server a dull boy.
|
||||
├── media/
|
||||
├── proxies/
|
||||
│ └── npm/
|
||||
├── remote_access/
|
||||
│ └── cloudflared/
|
||||
├── version_control/
|
||||
│ └── gittea/
|
||||
└── volumes/
|
||||
|
||||
16
remote_access/cloudflared/docker-compose.yml
Normal file
16
remote_access/cloudflared/docker-compose.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
services:
|
||||
cloudflared:
|
||||
image: cloudflare/cloudflared:latest
|
||||
container_name: cloudflared
|
||||
restart: unless-stopped
|
||||
command: tunnel run
|
||||
volumes:
|
||||
- ${CONFIG_ROOT}/cloudflared:/etc/cloudflared
|
||||
environment:
|
||||
- TUNNEL_TOKEN=${TUNNEL_TOKEN}
|
||||
labels:
|
||||
homepage.group: "Remote Access"
|
||||
homepage.name: "Cloudflared"
|
||||
homepage.icon: "cloudflare.png"
|
||||
homepage.href: "https://one.dash.cloudflare.com"
|
||||
homepage.description: "Cloudflare Tunnel"
|
||||
Reference in New Issue
Block a user