65 lines
No EOL
2.2 KiB
YAML
Executable file
65 lines
No EOL
2.2 KiB
YAML
Executable file
#version: "2.2"
|
|
services:
|
|
|
|
|
|
|
|
# photoprism:
|
|
# image: photoprism/photoprism
|
|
# container_name: photoprism
|
|
# hostname: photoprism
|
|
# networks:
|
|
# - netgrimoire
|
|
# ports:
|
|
# - 2342:2342
|
|
# environment:
|
|
# - PHOTOPRISM_PUBLIC=true
|
|
# - PHOTOPRISM_UPLOAD_NSFW=true
|
|
# - PHOTOPRISM_ADMIN_PASSWORD=F@lcon12
|
|
# - PGID=33
|
|
# - PUID=33
|
|
# volumes:
|
|
# - /DockerVol/photoprism:/photoprism/storage
|
|
# - /DockerVol/photoprism/photos:/photoprism/originals
|
|
# - /srv/ssd1/NextCloud/traveler/files/Photos:/photoprism/originals/Phil
|
|
# - /srv/ssd1/NextCloud/traveler/files/InstantUpload:/photoprism/originals/Phil/Upload
|
|
# - /srv/ssd1/NextCloud/cindy/files/300 Saltwater Tank Pics:/photoprism/originals/Cindy/tanks
|
|
# - /srv/ssd1/NextCloud/cindy/files/Photos:/photoprism/originals/Cindy/Upload
|
|
# - /export/Photos:/photoprism/photos
|
|
# restart: always
|
|
|
|
|
|
stash:
|
|
image: stashapp/stash:latest
|
|
container_name: stash
|
|
networks:
|
|
- netgrimoire
|
|
restart: unless-stopped
|
|
## the container's port must be the same with the STASH_PORT in the environment section
|
|
ports:
|
|
- "9999:9999"
|
|
## If you intend to use stash's DLNA functionality uncomment the below network mode and comment out the above ports section
|
|
# network_mode: host
|
|
environment:
|
|
- PGID=33
|
|
- PUID=33
|
|
- STASH_STASH=/data/
|
|
- STASH_GENERATED=/generated/
|
|
- STASH_METADATA=/metadata/
|
|
- STASH_CACHE=/cache/
|
|
## Adjust below to change default port (9999)
|
|
- STASH_PORT=9999
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
## Adjust below paths (the left part) to your liking.
|
|
## E.g. you can change ./config:/root/.stash to ./stash:/root/.stash
|
|
|
|
## Keep configs, scrapers, and plugins here.
|
|
- /DockerVol/Stash/config:/root/.stash
|
|
## Point this at your collection.
|
|
- /export/Data:/data
|
|
## This is where your stash's metadata lives
|
|
- /DockerVol/Stash/metadata:/metadata
|
|
## Any other cache content.
|
|
- ./DockerVol/Stash/cache:/cache
|
|
## Where to store generated content (screenshots,previews,transcodes,sprites)
|
|
- /DockerVol/Stash/generated:/generated |