Compare commits

..

No commits in common. "a4e5b7df7bdd14950861d2c3b82915a4fc99effc" and "76ea88eeee1a4875776de7569107e60dbc390ca1" have entirely different histories.

3 changed files with 0 additions and 30 deletions

View file

@ -36,7 +36,6 @@ 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) |

View file

@ -1,10 +0,0 @@
# 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

@ -1,19 +0,0 @@
# 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}"