mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-12-30 23:01:44 +00:00
media
This commit is contained in:
30
apps/media/bazarr.md
Normal file
30
apps/media/bazarr.md
Normal file
@@ -0,0 +1,30 @@
|
||||
# Bazarr
|
||||
|
||||
Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements.
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://www.bazarr.media/)
|
||||
- [Github repo](https://github.com/morpheus65535/bazarr)
|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
version: "2"
|
||||
services:
|
||||
bazarr:
|
||||
image: linuxserver/bazarr
|
||||
container_name: bazarr
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Dublin
|
||||
- UMASK_SET=022 #optional
|
||||
ports:
|
||||
- 6767:6767
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- /mnt/video:/video
|
||||
```
|
||||
Reference in New Issue
Block a user