jellystat
Jellystat is a free and open source Statistics App for Jellyfin!
5M+
Jellystat is a free and open source Statistics App for Jellyfin! (This project is still in development - expect some weirdness)
Example docker-compose file
version: '3'
services:
jellystat-db:
image: 'postgres:15.2'
shm_size: 1gb
container_name: jellystat-db
restart: unless-stopped
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: mypassword
volumes:
- 'postgres-data:/var/lib/postgresql/data'
jellystat:
image: 'cyfershepard/jellystat:latest'
container_name: jellystat
restart: unless-stopped
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: mypassword
POSTGRES_IP: jellystat-db
POSTGRES_PORT: 5432
JWT_SECRET: my-secret-jwt-key
TZ: mytimezone
volumes:
- 'jellystat-backup-data:/app/backend/backup-data'
ports:
- '3000:3000'
depends_on:
- jellystat-db
networks:
default: null
volumes:
postgres-data: null
jellystat-backup-data: null
logging:
driver: json-file
options:
max-file: '5'
max-size: 10m
To-do
Content type
Image
Digest
sha256:c4e2dfa8b…
Size
168.5 MB
Last updated
28 days ago
docker pull cyfershepard/jellystat:1.1.11