fix(kener): update it to work
Continuous Integration / pre-commit (push) Has been cancelled
Continuous Integration / docker-compose (push) Has been cancelled
Continuous Integration / terraform (bohr) (push) Has been cancelled
Continuous Integration / terraform (galana) (push) Has been cancelled
Continuous Integration / terraform (tana) (push) Has been cancelled
Continuous Integration / terraform (turkwel) (push) Has been cancelled
Continuous Integration / terraform (yala) (push) Has been cancelled
Continuous Integration / ansible (push) Has been cancelled

Signed-off-by: Rodney Osodo <socials@rodneyosodo.com>
This commit is contained in:
Rodney Osodo
2026-05-21 19:46:06 +00:00
parent 53f6c61da8
commit f0b38a27e6
3 changed files with 26 additions and 1 deletions
+4
View File
@@ -79,6 +79,10 @@ KENER_POSTGRES_PASSWORD=""
KENER_POSTGRES_DB=""
KENER_POSTGRES_URL=""
## KENER REDIS
KENER_REDIS_PASSWORD=""
KENER_REDIS_URL=""
## ATUIN
ATUIN_HOST="0.0.0.0"
ATUIN_PORT="9002"
+22 -1
View File
@@ -15,10 +15,17 @@ services:
- KENER_SECRET_KEY=${KENER_SECRET_KEY}
- ORIGIN=${KENER_ORIGIN}
- DATABASE_URL=${KENER_POSTGRES_URL}
- REDIS_URL=${KENER_REDIS_URL}
- SMTP_HOST=${SMTP_HOST}
- SMTP_PORT=${SMTP_PORT}
- SMTP_USER=${SMTP_NAME}
- SMTP_PASSWORD=${SMTP_PASSWORD}
- SMTP_SENDER=${MAIL_FROM_ADDRESS}
- SMTP_SECURE=1
ports:
- 4040:4040
volumes:
- ~/docker-volumes/kener/uploads:/app/uploads:rw
- ~/docker-volumes/kener/data:/app/database
kener-db:
container_name: kener-db
@@ -43,3 +50,17 @@ services:
interval: 5s
timeout: 5s
retries: 5
kener-redis:
container_name: kener-redis
image: redis:8-alpine
restart: unless-stopped
networks:
- homelab-network
security_opt:
- no-new-privileges:true
command: /bin/sh -c "redis-server --requirepass ${KENER_REDIS_PASSWORD}"
volumes:
- ~/docker-volumes/kener/redis:/data
environment:
- REDIS_PASSWORD=${KENER_REDIS_PASSWORD}