15 lines
364 B
YAML
15 lines
364 B
YAML
|
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
|