18 lines
377 B
YAML
18 lines
377 B
YAML
version: "3.8"
|
|
services:
|
|
stash:
|
|
container_name: stash
|
|
image: cr.hotio.dev/hotio/stash
|
|
restart: unless-stopped
|
|
network_mode: bridge
|
|
ports:
|
|
- "9999:9999"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- UMASK=002
|
|
- TZ=Europe/Amsterdam
|
|
volumes:
|
|
- /stash:/config
|
|
labels:
|
|
- com.centurylinklabs.watchtower.enable=true |