removed stacks and using normal docker but with seperated compose files

This commit is contained in:
poslop
2024-10-29 13:51:35 -05:00
parent 0e5da4b9f1
commit e64814cebb
17 changed files with 289 additions and 241 deletions

View File

@@ -0,0 +1,32 @@
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
devices:
- /dev/dri:/dev/dri
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
volumes:
- jellyfin:/config
- /mnt/massdrive/media:/data
ports:
- 8096:8096
restart: unless-stopped
networks:
- caddy
- shoko
networks:
caddy:
name: caddy
external: true
shoko:
name: shoko
external: true
volumes:
jellyfin:
name: jellyfin
external: true