Compare commits
2 commits
f9393152fd
...
a6f87b2a0f
Author | SHA1 | Date | |
---|---|---|---|
|
a6f87b2a0f | ||
|
c3444b2ab2 |
4 changed files with 19 additions and 1 deletions
|
@ -10,7 +10,6 @@ services:
|
|||
ackee:
|
||||
image: electerious/ackee
|
||||
restart: always
|
||||
container_name: metrics
|
||||
environment:
|
||||
- WAIT_HOSTS=mongo:27017
|
||||
- ACKEE_MONGODB=mongodb://mongo:27017/ackee
|
||||
|
|
3
uptimekuma_cloudflare/.env
Normal file
3
uptimekuma_cloudflare/.env
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Cloudflare Tunnel Token
|
||||
# Setup tunnel to http://kuma:3001
|
||||
TUNNEL_TOKEN= ##REQUIRED##
|
8
uptimekuma_cloudflare/README.md
Normal file
8
uptimekuma_cloudflare/README.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Uptime Kuma via. Cloudflare
|
||||
|
||||
There is almost no setup required and, luckily, Uptime Kuma includes
|
||||
Cloudflared.
|
||||
|
||||
1. Generate a new Tunnel pointing to `http://kuma:3001`
|
||||
2. Paste the Tunnel token into .env
|
||||
3. Start 'er up!
|
8
uptimekuma_cloudflare/docker-compose.yml
Normal file
8
uptimekuma_cloudflare/docker-compose.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
services:
|
||||
kuma:
|
||||
image: "louislam/uptime-kuma:1"
|
||||
restart: always
|
||||
environment:
|
||||
- UPTIME_KUMA_CLOUDFLARED_TOKEN=${TUNNEL_TOKEN}
|
||||
volumes:
|
||||
- ./data:/app/data
|
Loading…
Reference in a new issue