Login for certain variables to be updated with your slot's information
Wiki > StashDB
mkdir -p ~/stash
nano ~/stash/docker-compose.yml
services:
stash:
image: stashapp/stash:latest
container_name: stash
## the container's port must be the same with the STASH_PORT in the environment section
#ports:
# - "19014: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:
- PUID= YOURS
- PGID= YOURS
## Adjust below to change default port (9999)
- STASH_PORT=19014
- UMASK=002
- TZ=America/New_York
volumes:
## Keep configs, scrapers, and plugins here.
- /home/user/stash:/root/.stash
## Point this at your collection.
## The left side is where your collection is on your host, the right side is where it will be in stash.
- /home/user/files/media:/data
pull_policy: always
podman-compose -f ~/stash/docker-compose.yml up -d
http://server.whatbox.ca:19014
you wil lose access during setup you would need to do is follow the client that is displayed on stash and edit the config.yml dangerous_allow_public_without_auth: set to "true"