mirror of https://github.com/stashapp/stash.git
32 lines
846 B
YAML
32 lines
846 B
YAML
|
# APPNICENAME=Stash
|
||
|
# APPDESCRIPTION=An organizer for your porn, written in Go
|
||
|
version: '3.4'
|
||
|
services:
|
||
|
stash:
|
||
|
image: stashapp/stash:x86_64
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- "9999:9999"
|
||
|
logging:
|
||
|
driver: "json-file"
|
||
|
options:
|
||
|
max-file: "10"
|
||
|
max-size: "200k"
|
||
|
environment:
|
||
|
- STASH_STASH=/data/
|
||
|
- STASH_GENERATED=/generated/
|
||
|
- STASH_METADATA=/metadata/
|
||
|
- STASH_CACHE=/cache/
|
||
|
volumes:
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
## Keep configs here.
|
||
|
- ./config:/root/.stash
|
||
|
## Point this at your collection.
|
||
|
- ./data:/data
|
||
|
## This is where pre-generated transcodes live.
|
||
|
- ./transcodes:/transcodes
|
||
|
## This is where your stash's metadata lives
|
||
|
- ./metadata:/metadata
|
||
|
## Any other cache content.
|
||
|
- ./cache:/cache
|