chore: Add docker compose for easier test setup for debugging

pull/47/head
Robert Dailey 3 years ago
parent d1a7f0a5bd
commit e0c11f80d1

@ -0,0 +1,37 @@
version: '3'
volumes:
radarr1:
radarr2:
sonarr1:
services:
radarr1:
image: ghcr.io/hotio/radarr:nightly
network_mode: bridge
ports:
- 7878:7878
volumes:
- radarr1:/config
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
Loading…
Cancel
Save