Cloudflared #137

Merged
skobkin merged 1 commit from feature_cloudflared into master 2024-12-06 16:32:26 +00:00
3 changed files with 30 additions and 0 deletions

View file

@ -36,6 +36,7 @@ Not every stack is tested to fully work.
|-------------------------|-------------|----------------------------------------------|-------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| ARK Server | ✅ | `thmhoag/arkserver` | ARK: Survival Evolved game server with ArkManager. | [Website](http://playark.com), [Steam](https://store.steampowered.com/app/346110/ARK_Survival_Evolved/), [Image Github](https://github.com/thmhoag/arkserver), [ArkManager](https://github.com/arkmanager/ark-server-tools) |
| Castopod | ✅ | `castopod/castopod` | Self-hosted federated podcasting platform | [Website](https://castopod.org), [Gitlab](https://code.castopod.org/adaures/castopod) |
| Cloudflared | ✅ | `cloudflare/cloudflared` | Cloudflare Tunnel client. | [Website](https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/get-started/), [Github](https://github.com/cloudflare/cloudflared) |
| Drone | ✅ | `drone/drone` | Continuous integration platform. | [Website](https://www.drone.io), [Github](https://github.com/harness/drone), [Image](https://hub.docker.com/r/drone/drone) |
| Drone Docker Runner | ✅ | `drone/drone-runner-docker` | CI runner daemon for Docker. | [Website](https://www.drone.io), [Github](https://github.com/drone-runners/drone-runner-docker), [Image](https://hub.docker.com/r/drone/drone-runner-docker) |
| Duplicati | ✅ | `linuxserver/duplicati` | Backup solution with many storage backends. | [Website](https://www.duplicati.com), [Github](https://github.com/duplicati/duplicati) |

10
cloudflared/.env.dist Normal file
View file

@ -0,0 +1,10 @@
# see https://hub.docker.com/r/cloudflare/cloudflared
#IMAGE_VERSION=latest
TUNNEL_TOKEN=abcxyz
#NETWORK_MODE=host
# Service settings
LOG_MAX_SIZE=5m
LOG_MAX_FILE=5

View file

@ -0,0 +1,19 @@
# https://hub.docker.com/r/cloudflare/cloudflared
services:
cloudflared:
image: "cloudflare/cloudflared:${IMAGE_VERSION:-latest}"
container_name: cloudflared
command:
- 'tunnel'
- '-no-autoupdate'
- 'run'
- '-token'
- '${TUNNEL_TOKEN}'
network_mode: '${NETWORK_MODE:-host}'
env_file: .env
restart: unless-stopped
logging:
driver: "json-file"
options:
max-size: "${LOG_MAX_SIZE:-5m}"
max-file: "${LOG_MAX_FILE:-5}"