feat: add initial kener instance (uptime monitoring)

This commit is contained in:
2026-01-23 11:12:36 +01:00
parent c6d00e525b
commit 073d9ff569
2 changed files with 24 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
KENER_SECRET_KEY=your_secret_key_here
ORIGIN=http://localhost:3000
TZ=Etc/UTC
+21
View File
@@ -0,0 +1,21 @@
services:
kener:
image: rajnandan1/kener:latest
container_name: kener
ports:
- 3000:3000/tcp
environment:
- KENER_SECRET_KEY=${KENER_SECRET_KEY?Kener requires a secret key}
- ORIGIN=${ORIGIN:-http://localhost:3000}
- TZ:${TZ:-Etc/UTC}
volumes:
- db:/app/database
- uploads:/app/uploads
networks:
- proxy
volumes:
db:
uploads:
networks:
proxy:
external: true