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

This commit is contained in:
2022-05-01 14:01:04 +02:00
parent fce3bd461a
commit b2b0f55b62
25 changed files with 138 additions and 134 deletions

View File

@ -3,13 +3,13 @@ Portainer Stack:
version: "3.8"
services:
bazarr:
image: linuxserver/bazarr:latest
image: linuxserver/bazarr:${tag-latest}
container_name: bazarr
network_mode: bridge
network_mode: ${net-bridge}
environment:
- PUID="${PUID-1000}"
- PGID="${PGID-1000}"
- TZ="${TZ-Europe/Amsterdam}"
- PUID=${PUID-1000}
- PGID=${PGID-1000}
- TZ={TZ-Europe/Amsterdam}
- UMASK_SET=022
volumes:
- /htpc/bazarr:/config
@ -18,7 +18,7 @@ services:
- /media/kids:/kids
ports:
- 6767:6767
restart: unless-stopped
restart: TZ="${TZ-Europe/Amsterdam}"
labels:
- com.centurylinklabs.watchtower.enable=true
- com.centurylinklabs.watchtower.enable=${AutoUpdate-true}
```