feat/kener #9

Merged
forust merged 8 commits from feat/kener into main 2026-01-24 00:19:52 +00:00
2 changed files with 24 additions and 0 deletions
Showing only changes of commit 073d9ff569 - Show all commits
+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