bazarr: add
This commit is contained in:
parent
2fee290866
commit
788718dd20
2
.env
2
.env
|
@ -104,3 +104,5 @@ LINKACE_DB_USERNAME=linkace
|
|||
LINKACE_DB_PASSWORD=zghhRS&FdK6niiJg5Q5Nr3E4
|
||||
VAULTWARDEN_EXTERNAL_PORT=8666
|
||||
VAULTWARDEN_INTERNAL_PORT=80
|
||||
BAZARR_EXTERNAL_PORT=6767
|
||||
BAZARR_INTERNAL_PORT=6767
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
---
|
||||
version: '3.3'
|
||||
|
||||
include:
|
||||
- services/bazarr.yml
|
||||
|
||||
|
||||
services:
|
||||
uptime-kuma:
|
||||
image: louislam/uptime-kuma:1
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
services:
|
||||
bazarr:
|
||||
image: bazarr
|
||||
container_name: linuxserver/bazarr
|
||||
ports:
|
||||
- "${BAZARR_EXTERNAL_PORT}:${BAZARR_INTERNAL_PORT}"
|
||||
networks:
|
||||
- public
|
||||
volumes:
|
||||
- "${DOCKER_STORAGE_PATH}/bazarr:/config"
|
||||
- "${MOVIE_PATH}:/movies"
|
||||
- "${TV_PATH}:/tv"
|
||||
profiles:
|
||||
- base
|
||||
restart: unless-stopped
|
Loading…
Reference in New Issue