inital chris
This commit is contained in:
commit
43015241e6
1 changed files with 65 additions and 0 deletions
65
compose.yaml
Normal file
65
compose.yaml
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
networks:
|
||||
arr-chris_network:
|
||||
name: arr-chris_network
|
||||
|
||||
services:
|
||||
|
||||
radarrCL:
|
||||
container_name: radarrCL
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Berlin
|
||||
- CONFIG_DIR=/config/radarrCL
|
||||
image: ghcr.io/hotio/radarr:latest
|
||||
networks:
|
||||
- arr-chris_network
|
||||
ports:
|
||||
- 7878:7878
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- /app-config/arr/:/config
|
||||
- data:/chris
|
||||
|
||||
sonarrCL:
|
||||
container_name: sonarrCL
|
||||
image: ghcr.io/hotio/sonarr:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Berlin
|
||||
- UMASK=022
|
||||
- CONFIG_DIR=/config/sonarrCL
|
||||
networks:
|
||||
- arr-chris_network
|
||||
ports:
|
||||
- 8989:8989
|
||||
volumes:
|
||||
- /app-config/arr/:/config
|
||||
- data:/chris
|
||||
|
||||
seerr:
|
||||
container_name: seerr
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Berlin
|
||||
- JELLYFIN_TYPE=emby
|
||||
image: seerr/seerr:latest
|
||||
#image: fallenbagel/jellyseerr:develop
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- /app-config/seerr:/app/config
|
||||
ports:
|
||||
- "5055:5055"
|
||||
networks:
|
||||
- arr-chris_network
|
||||
|
||||
volumes:
|
||||
data:
|
||||
driver: local
|
||||
driver_opts:
|
||||
type: nfs
|
||||
o: "addr=192.168.7.106,nolock,soft,rw"
|
||||
device: ":/chris"
|
||||
Loading…
Add table
Add a link
Reference in a new issue