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.
recyclarr/debugging/docker-compose.yml

39 lines
645 B

version: '3'
volumes:
radarr1:
radarr2:
sonarr1:
services:
radarr1:
image: ghcr.io/hotio/radarr
network_mode: bridge
ports:
- 7878:7878
volumes:
- radarr1:/config
- ./certs:/certs:ro
environment:
- TZ=America/Chicago
radarr2:
image: ghcr.io/hotio/radarr:nightly
network_mode: bridge
ports:
- 6767:7878
volumes:
- radarr2:/config
environment:
- TZ=America/Chicago
sonarr1:
image: ghcr.io/hotio/sonarr:nightly
network_mode: bridge
ports:
- 8989:8989
volumes:
- sonarr1:/config
environment:
- TZ=America/Chicago