JellyStat
Application statistique gratuite et open source pour Jellyfin ! Ce projet est encore en développement - vous pouvez vous attendre à quelques bugs.

docker volume create jellystat_db
docker volume create jellystat_backup
services:
jellystat-db:
image: postgres:15.2
container_name: 'jellystat_db'
environment:
POSTGRES_DB: 'jfstat'
POSTGRES_USER: postgres
POSTGRES_PASSWORD: mypassword # Changez le mot de passe
volumes:
- jellystat_db:/var/lib/postgresql/data
networks:
- jellystat_network
jellystat:
image: cyfershepard/jellystat:latest
container_name: 'jellystat'
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: mypassword # Changez le mot de passe
POSTGRES_IP: jellystat-db
POSTGRES_PORT: 5432
JWT_SECRET: 'my-secret-jwt-key' # Changez le mot de passe
ports:
- "2121:3000"
volumes:
- jellystat_backup:/app/backend/backup-data
depends_on:
- jellystat-db
restart: unless-stopped
networks:
- jellystat_network
networks:
jellystat_network:
driver: bridge
volumes:
jellystat_db:
jellystat_backup:
external: true

