2023-12-01 20:42:19 +01:00
|
|
|
---
|
2023-12-01 20:17:50 +01:00
|
|
|
services:
|
|
|
|
bazarr:
|
|
|
|
image: docker.io/linuxserver/bazarr:latest
|
|
|
|
container_name: bazarr
|
|
|
|
ports:
|
|
|
|
- "${BAZARR_EXTERNAL_PORT}:${BAZARR_INTERNAL_PORT}"
|
|
|
|
networks:
|
2023-12-05 10:55:22 +01:00
|
|
|
public:
|
|
|
|
ipv4_address: 192.168.240.31
|
2023-12-27 22:29:24 +01:00
|
|
|
environment:
|
|
|
|
- PUID=${PUID}
|
|
|
|
- PGID=${PGID}
|
2023-12-01 20:17:50 +01:00
|
|
|
volumes:
|
|
|
|
- "${DOCKER_STORAGE_PATH}/bazarr:/config"
|
|
|
|
- "${MOVIE_PATH}:/movies"
|
|
|
|
- "${TV_PATH}:/tv"
|
2023-12-01 20:42:19 +01:00
|
|
|
restart: unless-stopped
|