bazarr: add
This commit is contained in:
parent
2fee290866
commit
c18a81e3b0
2
.env
2
.env
|
@ -104,3 +104,5 @@ LINKACE_DB_USERNAME=linkace
|
||||||
LINKACE_DB_PASSWORD=zghhRS&FdK6niiJg5Q5Nr3E4
|
LINKACE_DB_PASSWORD=zghhRS&FdK6niiJg5Q5Nr3E4
|
||||||
VAULTWARDEN_EXTERNAL_PORT=8666
|
VAULTWARDEN_EXTERNAL_PORT=8666
|
||||||
VAULTWARDEN_INTERNAL_PORT=80
|
VAULTWARDEN_INTERNAL_PORT=80
|
||||||
|
BAZARR_EXTERNAL_PORT=6767
|
||||||
|
BAZARR_INTERNAL_PORT=6767
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
|
---
|
||||||
version: '3.3'
|
version: '3.3'
|
||||||
|
|
||||||
|
include:
|
||||||
|
- services/bazarr.yml
|
||||||
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
uptime-kuma:
|
uptime-kuma:
|
||||||
image: louislam/uptime-kuma:1
|
image: louislam/uptime-kuma:1
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
services:
|
||||||
|
bazarr:
|
||||||
|
image: docker.io/linuxserver/bazarr:latest
|
||||||
|
container_name: 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