We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dd744f commit 843888bCopy full SHA for 843888b
docker/jellyfin/docker-compose.yml
@@ -54,3 +54,27 @@ services:
54
- 22000:22000/udp
55
- 21027:21027/udp
56
restart: unless-stopped
57
+
58
+ jellystat-db:
59
+ image: postgres:15.2
60
+ environment:
61
+ POSTGRES_DB: 'jfstat'
62
+ POSTGRES_USER: postgres
63
+ POSTGRES_PASSWORD: $POSTGRES_PASSWORD
64
+ volumes:
65
+ - /docker/appdata/jellystat/postgres-data:/var/lib/postgresql/data
66
+ jellystat:
67
+ image: cyfershepard/jellystat:1.1.0
68
69
70
71
+ POSTGRES_IP: jellystat-db
72
+ POSTGRES_PORT: 5432
73
+ JWT_SECRET: $JWT_SECRET
74
+ ports:
75
+ - "3000:3000"
76
77
+ - /docker/appdata/jellystat/backup-data:/app/backend/backup-data
78
+ depends_on:
79
+ - jellystat-db
80
+ restart: unless-stopped
0 commit comments