File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -54,3 +54,27 @@ services:
54
54
- 22000:22000/udp
55
55
- 21027:21027/udp
56
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
+ environment :
69
+ POSTGRES_USER : postgres
70
+ POSTGRES_PASSWORD : $POSTGRES_PASSWORD
71
+ POSTGRES_IP : jellystat-db
72
+ POSTGRES_PORT : 5432
73
+ JWT_SECRET : $JWT_SECRET
74
+ ports :
75
+ - " 3000:3000"
76
+ volumes :
77
+ - /docker/appdata/jellystat/backup-data:/app/backend/backup-data
78
+ depends_on :
79
+ - jellystat-db
80
+ restart : unless-stopped
You can’t perform that action at this time.
0 commit comments