saltyorg / Sandbox

Saltbox Sandbox
GNU General Public License v3.0
66 stars 92 forks source link

jellystat #253

Closed moooep closed 7 months ago

moooep commented 1 year ago

This app is for jellyfin what tautulli for plex is. I think it fits perfectly to saltbox: https://github.com/CyferShepard/Jellystat

owine commented 1 year ago

https://hub.docker.com/r/cyfershepard/jellystat

services:
  jellystat-db:
    image: postgres
    environment:
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: mypassword
  jellystat:
    image: cyfershepard/jellystat:latest
    environment:
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: mypassword
      POSTGRES_IP: jellystat-db
      POSTGRES_PORT: 5432
      JWT_SECRET: 'my-secret-jwt-key'
    ports:
      - "3000:3000" #Server Port
      - "3004:3004" #websocket port
    volumes:
      - /app/backend/backup-data:/backup-data # Mounting the volume

    depends_on:
      - jellystat-db
networks:
  default:

Being a role with a database and given our upcoming restructure of all DB roles, this would probably be for the traefik3 branch only until that is merged.

titooo7 commented 10 months ago

Looking forward to see it implemented on saltbox :)