first commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-05-16 14:26:58 +02:00
parent 2111f7db5f
commit db59715d36
29 changed files with 102 additions and 70 deletions

View File

@ -6,11 +6,11 @@ services:
whisparr:
image: cr.hotio.dev/hotio/whisparr:nightly
container_name: whisparr
network_mode: bridge
network_mode: ${NET-bridge}
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
- PUID=${PUID-1000}
- PGID=${PGID-1000}
- TZ=${TZ-Europe/Amsterdam}
- UMASK=002
volumes:
- /whisparr:/config
@ -20,5 +20,5 @@ services:
- 6969:6969
restart: unless-stopped
labels:
- com.centurylinklabs.watchtower.enable=true
- com.centurylinklabs.watchtower.enable=${AutoUpdate-true}
```