started implementing radarr and sonarr
This commit is contained in:
parent
7b363964f7
commit
f198d98437
23 changed files with 45022 additions and 15 deletions
54
docker-compose.mocks.yml
Normal file
54
docker-compose.mocks.yml
Normal file
|
@ -0,0 +1,54 @@
|
|||
version: '3'
|
||||
services:
|
||||
proxy:
|
||||
image: caddy
|
||||
volumes:
|
||||
- ./Caddyfile:/etc/caddy/Caddyfile
|
||||
ports:
|
||||
- '8080:80'
|
||||
depends_on:
|
||||
- sonarr_v3
|
||||
- sonarr_v5
|
||||
- radarr
|
||||
- jellyfin
|
||||
|
||||
sonarr_v3:
|
||||
image: stoplight/prism
|
||||
volumes:
|
||||
- './src/features/content/apis:/var/apis'
|
||||
command: >-
|
||||
mock
|
||||
-h 0.0.0.0
|
||||
-p 4010
|
||||
/var/apis/sonarr.v3.json
|
||||
|
||||
sonarr_v5:
|
||||
image: stoplight/prism
|
||||
volumes:
|
||||
- './src/features/content/apis:/var/apis'
|
||||
command: >-
|
||||
mock
|
||||
-h 0.0.0.0
|
||||
-p 4010
|
||||
/var/apis/sonarr.v5.json
|
||||
|
||||
radarr:
|
||||
image: stoplight/prism
|
||||
volumes:
|
||||
- './src/features/content/apis:/var/apis'
|
||||
command: >-
|
||||
mock
|
||||
-h 0.0.0.0
|
||||
-p 4010
|
||||
/var/apis/radarr.json
|
||||
|
||||
jellyfin:
|
||||
image: stoplight/prism
|
||||
volumes:
|
||||
- './src/features/content/apis:/var/apis'
|
||||
command: >-
|
||||
mock
|
||||
-h 0.0.0.0
|
||||
-p 4010
|
||||
/var/apis/jellyfin.json
|
||||
/var/apis/jellyfin.json
|
Loading…
Add table
Add a link
Reference in a new issue