You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.6 KiB
72 lines
1.6 KiB
version: "3.2"
|
|
services:
|
|
radarr:
|
|
container_name: radarr
|
|
image: cr.hotio.dev/hotio/radarr:latest
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: json-file
|
|
network_mode: bridge
|
|
ports:
|
|
- 7878:7878
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Amsterdam
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /docker/appdata/radarr:/config
|
|
- /data:/data
|
|
sonarr:
|
|
container_name: sonarr
|
|
image: cr.hotio.dev/hotio/sonarr:latest
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: json-file
|
|
network_mode: bridge
|
|
ports:
|
|
- 8989:8989
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Amsterdam
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /docker/appdata/sonarr:/config
|
|
- /data:/data
|
|
bazarr:
|
|
container_name: bazarr
|
|
image: cr.hotio.dev/hotio/bazarr:latest
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: json-file
|
|
network_mode: bridge
|
|
ports:
|
|
- 6767:6767
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Amsterdam
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /docker/appdata/bazarr:/config
|
|
- /data/media:/data/media
|
|
sabnzbd:
|
|
container_name: sabnzbd
|
|
image: cr.hotio.dev/hotio/sabnzbd:latest
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: json-file
|
|
network_mode: bridge
|
|
ports:
|
|
- 8080:8080
|
|
- 9090:9090
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Amsterdam
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /docker/appdata/sabnzbd:/config
|
|
- /data/usenet:/data/usenet:rw
|