Compare commits
No commits in common. "e926f880fa636195f6cf191d945aa68c9cb3b579" and "5eeb23470ad6da8819ee9409ed76c4aec8fe8880" have entirely different histories.
e926f880fa
...
5eeb23470a
11 changed files with 35 additions and 87 deletions
|
|
@ -28,3 +28,38 @@ services:
|
||||||
# restart: always
|
# 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
|
||||||
0
calibre.yaml
Executable file → Normal file
0
calibre.yaml
Executable file → Normal file
24
compose.yaml
24
compose.yaml
|
|
@ -1,24 +0,0 @@
|
||||||
services:
|
|
||||||
|
|
||||||
namer:
|
|
||||||
container_name: namer
|
|
||||||
image: ghcr.io/theporndatabase/namer:latest
|
|
||||||
networks:
|
|
||||||
- netgrimoire
|
|
||||||
environment:
|
|
||||||
- PUID=1001
|
|
||||||
- PGID=998
|
|
||||||
- TZ=America/Chicago
|
|
||||||
- NAMER_CONFIG=/config/namer.cfg
|
|
||||||
volumes:
|
|
||||||
- /DockerVol/namer/:/config
|
|
||||||
- /data/nfs/Baxter/Green/:/data
|
|
||||||
ports:
|
|
||||||
- 6980:6980
|
|
||||||
restart: always
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
networks:
|
|
||||||
netgrimoire:
|
|
||||||
external: true
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
||||||
services:
|
|
||||||
|
|
||||||
namer:
|
|
||||||
container_name: namer
|
|
||||||
image: ghcr.io/theporndatabase/namer:latest
|
|
||||||
networks:
|
|
||||||
- netgrimoire
|
|
||||||
environment:
|
|
||||||
- PUID=1001
|
|
||||||
- PGID=998
|
|
||||||
- TZ=America/Chicago
|
|
||||||
- NAMER_CONFIG=/config/namer.cfg
|
|
||||||
volumes:
|
|
||||||
- /DockerVol/namer/:/config
|
|
||||||
- /data/nfs/Baxter/Green/:/data
|
|
||||||
ports:
|
|
||||||
- 6980:6980
|
|
||||||
restart: always
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
networks:
|
|
||||||
netgrimoire:
|
|
||||||
external: true
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
services:
|
|
||||||
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 c
|
|
||||||
omment out the above ports section
|
|
||||||
# network_mode: host
|
|
||||||
environment:
|
|
||||||
- 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.
|
|
||||||
- /data/nfs/Baxter/Green:/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
|
|
||||||
|
|
||||||
networks:
|
|
||||||
netgrimoire:
|
|
||||||
external: true
|
|
||||||
0
git/index
Executable file → Normal file
0
git/index
Executable file → Normal file
0
git/objects/5f/5626e7e31e1461fc9595396a92240c90d4b7a3
Executable file → Normal file
0
git/objects/5f/5626e7e31e1461fc9595396a92240c90d4b7a3
Executable file → Normal file
0
git/objects/6d/adc92b2e067670247dad2c012add2298def15b
Executable file → Normal file
0
git/objects/6d/adc92b2e067670247dad2c012add2298def15b
Executable file → Normal file
0
git/objects/86/3310846f0483a938e7238de6cb8903f76295ca
Executable file → Normal file
0
git/objects/86/3310846f0483a938e7238de6cb8903f76295ca
Executable file → Normal file
0
git/objects/a0/ebf49b35f5482846d1928be9da709b42b26513
Executable file → Normal file
0
git/objects/a0/ebf49b35f5482846d1928be9da709b42b26513
Executable file → Normal file
0
git/refs/heads/master
Executable file → Normal file
0
git/refs/heads/master
Executable file → Normal file
Loading…
Add table
Add a link
Reference in a new issue