26 lines
928 B
YAML
26 lines
928 B
YAML
version: '3.8'
|
|
services:
|
|
umlautadaptarr:
|
|
#uncomment this to get the development branch
|
|
#build: https://github.com/PCJones/UmlautAdaptarr.git#develop
|
|
build: https://github.com/PCJones/UmlautAdaptarr.git#master
|
|
image: umlautadaptarr
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5005:5005" # can be removed if you use the recommended prowlarr+proxy configuration
|
|
- "5006:5006" # can be removed if you use the alternative, non-proxy configuration
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
- SONARR__ENABLED=false
|
|
- SONARR__HOST=http://localhost:8989
|
|
- SONARR__APIKEY=APIKEY
|
|
- RADARR__ENABLED=false
|
|
- RADARR__HOST=http://localhost:7878
|
|
- RADARR__APIKEY=APIKEY
|
|
- READARR__ENABLED=false
|
|
- READARR__HOST=http://localhost:8787
|
|
- READARR__APIKEY=APIKEY
|
|
- LIDARR__ENABLED=false
|
|
- LIDARR__HOST=http://localhost:8686
|
|
- LIDARR__APIKEY=APIKEY
|