wiki/docs/portainer-stacks/Whisparr.md
sthope 848a5f5f29
All checks were successful
continuous-integration/drone/push Build is passing
updating docker version
2023-08-19 21:52:32 +02:00

24 lines
531 B
Markdown

Portainer Stack:
```yaml
---
version: "3.9"
services:
whisparr:
image: cr.hotio.dev/hotio/whisparr:nightly
container_name: whisparr
network_mode: ${NET-bridge}
environment:
- PUID=${PUID-1000}
- PGID=${PGID-1000}
- TZ=${TZ-Europe/Amsterdam}
- UMASK=002
volumes:
- /whisparr:/config
- /media/xxx:/xxx
- /media/downloads:/downloads
ports:
- 6969:6969
restart: unless-stopped
labels:
- com.centurylinklabs.watchtower.enable=${AutoUpdate-true}
```