34 lines
1.1 KiB
YAML
Executable File
34 lines
1.1 KiB
YAML
Executable File
---
|
|
services:
|
|
stash:
|
|
image: stashapp/stash:latest
|
|
container_name: stash
|
|
restart: unless-stopped
|
|
ports:
|
|
- "6969:9999"
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-file: "10"
|
|
max-size: "2m"
|
|
environment:
|
|
- STASH_STASH=/data/
|
|
- STASH_GENERATED=/generated/
|
|
- STASH_METADATA=/metadata/
|
|
- STASH_CACHE=/cache/
|
|
- STASH_PORT=9999
|
|
- STASH_DOCKER_FOLDER=/home/docker/stash
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
## Keep configs, scrapers, and plugins here.
|
|
- /home/docker/stash/config:/root/.stash
|
|
## Point this at your collection.
|
|
- /home/docker/xrandr:/data
|
|
## This is where your stash's metadata lives
|
|
- /home/docker/stash/metadata:/metadata
|
|
## Any other cache content
|
|
- /home/docker/stash/cache:/cache
|
|
## Where to store binary blob data (scene covers, images)
|
|
- /home/docker/stash/blobs:/blobs
|
|
## Where to store generated content (screenshots,previews,transcodes,sprites)
|
|
- /home/docker/stash/generated:/generated |