feat: add various Docker services and configurations for Minecraft, Plex, Sabnzbd, and more

This commit is contained in:
2024-11-14 20:39:11 +01:00
parent a439ccc355
commit e83ebe2d2c
33 changed files with 2423 additions and 93 deletions

View File

@ -0,0 +1,28 @@
services:
stash:
image: stashapp/stash:latest
container_name: stash
restart: unless-stopped
ports:
- "9999:9999"
environment:
- STASH_STASH=/data/
- STASH_GENERATED=/generated/
- STASH_METADATA=/metadata/
- STASH_CACHE=/cache/
- STASH_PORT=9999
volumes:
- /etc/localtime:/etc/localtime:ro
## Keep configs, scrapers, and plugins here.
- ./data/config:/root/.stash
## Point this at your collection.
- /mnt/20tb/Stash:/data
## This is where your stash's metadata lives
- ./data/metadata:/metadata
## Any other cache content.
- ./data/cache:/cache
## Where to store binary blob data (scene covers, images)
- ./data/blobs:/blobs
## Where to store generated content (screenshots,previews,transcodes,sprites)
- ./data/generated:/generated