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

@@ -1,6 +1,7 @@
services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
environment:
- PUID=1000
- PGID=1000
@@ -9,12 +10,14 @@ services:
- prowlarr:/config
ports:
- 9696:9696
restart: unless-stopped
networks:
- arr
- qbit
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
@@ -24,6 +27,7 @@ services:
- /mnt/massdrive/media:/mnt/media
ports:
- 8989:8989
restart: unless-stopped
networks:
- arr
- qbit
@@ -39,5 +43,7 @@ networks:
volumes:
prowlarr:
name: prowlarr
external: true
sonarr:
name: sonarr
external: true

View File

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

View File

@@ -0,0 +1,27 @@
services:
shoko:
shm_size: 256m
container_name: shoko
image: shokoanime/server:daily
restart: always
environment:
- "PUID=1000"
- "PGID=1000"
- "TZ=Etc/UTC"
ports:
- "8111:8111"
volumes:
- shoko:/home/shoko/.shoko
- /mnt/massdrive/media:/mnt/media
networks:
- shoko
networks:
shoko:
name: shoko
external: true
volumes:
shoko:
name: shoko
external: true