Compare commits

..

3 Commits

Author SHA1 Message Date
56fa49b082 Update ghcr.io/linuxserver/healthchecks Docker tag to v4.0.20260309 2026-03-10 02:31:54 +00:00
286c1a409f Add open-webui 2026-03-07 21:29:52 +05:30
770dded82f Add jellystat 2026-03-07 11:31:22 +05:30
4 changed files with 77 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
services: services:
healthchecks: healthchecks:
container_name: healthchecks container_name: healthchecks
image: ghcr.io/linuxserver/healthchecks:4.0.20260216@sha256:9748ad5de1a8aaede64e54d742424f2e8a92ed661814c232b333e567de40d829 image: ghcr.io/linuxserver/healthchecks:4.0.20260309@sha256:aadb6c5407f817dc3204d3bb0b77aa7d58f73df58097d75fe2d949af8ed54385
restart: unless-stopped restart: unless-stopped
environment: environment:
- PUID=${PUID} - PUID=${PUID}

View File

@@ -1,7 +1,7 @@
services: services:
home-assistant: home-assistant:
container_name: home-assistant container_name: home-assistant
image: ghcr.io/home-assistant/home-assistant:2026.3.1@sha256:0e091dfce3068339c3e1d14382e6c34141e05cd589a1972ebd4d9a8e6b5d8969 image: ghcr.io/home-assistant/home-assistant:2026.2.3@sha256:96fa92d83fa8dae987fbbbcf58b1fea1140985ff6a8517b37f7b65c76ef20133
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ${APPDATA_PATH}/home-assistant/config:/config - ${APPDATA_PATH}/home-assistant/config:/config

56
jellystat/compose.yaml Normal file
View File

@@ -0,0 +1,56 @@
services:
jellystat_db:
container_name: jellystat_db
image: docker.io/library/postgres:18.2@sha256:9b5bd946f3a507db72c55959700e517463e8d5dbb6f7eb30d920d5bcf6951431
restart: unless-stopped
shm_size: '1gb'
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
- PGDATA=/var/lib/postgresql/18/docker
volumes:
- ${APPDATA_PATH}/jellystat/db:/var/lib/postgresql
networks:
- backend
healthcheck:
test: ["CMD-SHELL", "pg_isready -d ${POSTGRES_DB} -U ${POSTGRES_USER}"]
interval: 10s
timeout: 5s
retries: 3
start_period: 10s
jellystat:
container_name: jellystat
image: ghcr.io/cyfershepard/jellystat:1.1.8@sha256:c8c451704ba7985340142cd047e2364cabaf41b613669b6c5340688ed217f82a
restart: unless-stopped
depends_on:
jellystat-db:
condition: service_healthy
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_IP=jellystat_db
- POSTGRES_PORT=5432
- JWT_SECRET=${JWT_SECRET}
- TZ=${TZ}
volumes:
- ${APPDATA_PATH}/jellystat/backup-data:/app/backend/backup-data
ports:
- ${PORT}:3000
networks:
- frontend
- backend
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:3000/auth/isConfigured || exit 1
interval: 60s
timeout: 30s
retries: 5
start_period: 30s
networks:
frontend:
external: true
backend:
external: true

19
open-webui/compose.yaml Normal file
View File

@@ -0,0 +1,19 @@
services:
open-webui:
container_name: open-webui
image: ghcr.io/open-webui/open-webui:v0.8.8-ollama@sha256:781938633d6d445daa489fcdc0c1988c4c875e6358175f484fdd8a89aa152503
restart: unless-stopped
environment:
- OLLAMA_BASE_URL=${OLLAMA_BASE_URL}
- WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY}
- WEBUI_AUTH=true
volumes:
- ${APPDATA_PATH}/open-webui/data:/app/backend/data
ports:
- ${PORT}:8080
networks:
- frontend
networks:
frontend:
external: true