broke out jellyfin
This commit is contained in:
parent
5950da7967
commit
5e2fbe1ff6
6 changed files with 180 additions and 187 deletions
61
JellyStat.yaml
Executable file
61
JellyStat.yaml
Executable file
|
|
@ -0,0 +1,61 @@
|
|||
|
||||
services:
|
||||
|
||||
jellystat-db:
|
||||
image: postgres:15.2
|
||||
hostname: postgres
|
||||
container_name: postgres
|
||||
environment:
|
||||
- POSTGRES_DB='jfstat'
|
||||
- POSTGRES_USER=jellystat
|
||||
- POSTGRES_PASSWORD=jellystat
|
||||
- PUID=1001
|
||||
- PGID=998
|
||||
- TZ=America/Chicago
|
||||
volumes:
|
||||
- /DockerVol/jellystat/postgres-data:/var/lib/postgresql/data # Mounting the volume
|
||||
networks:
|
||||
- netgrimoire
|
||||
deploy:
|
||||
placement:
|
||||
constraints:
|
||||
- node.hostname == bruce
|
||||
|
||||
jellystat:
|
||||
image: cyfershepard/jellystat:latest
|
||||
hostname: jellystat
|
||||
container_name: jellystat
|
||||
environment:
|
||||
POSTGRES_USER: jellystat
|
||||
POSTGRES_PASSWORD: jellystat
|
||||
POSTGRES_IP: jellystat-db
|
||||
POSTGRES_PORT: 5432
|
||||
JWT_SECRET: 'my-secret-jwt-key'
|
||||
ports:
|
||||
- "3015:3000" #Server Port
|
||||
volumes:
|
||||
- /DockerVol/jellystat/backup-data:/app/backend/backup-data # Mounting the volume
|
||||
depends_on:
|
||||
- jellystat-db
|
||||
networks:
|
||||
- netgrimoire
|
||||
deploy:
|
||||
labels:
|
||||
- homepage.group=Library
|
||||
- homepage.name=JellyStat
|
||||
- homepage.icon=jellystat.png
|
||||
- homepage.href=http://jellystat.netgrimoire.com
|
||||
- homepage.description=Jelly Stats
|
||||
- kuma.jellystat.http.name="JellyStat"
|
||||
- kuma.jellystat.http.url=http://jellystat:3000
|
||||
- caddy=jellystat.netgrimoire.com
|
||||
- caddy.import=authentik
|
||||
- caddy.reverse_proxy="{{upstreams 3000}}"
|
||||
placement:
|
||||
constraints:
|
||||
- node.hostname == bruce
|
||||
|
||||
|
||||
networks:
|
||||
netgrimoire:
|
||||
external: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue