35 lines
576 B
YAML
35 lines
576 B
YAML
networks:
|
|
arr-chris_network:
|
|
name: arr-chris_network
|
|
|
|
services:
|
|
|
|
|
|
|
|
sonarrCL:
|
|
container_name: sonarrCL
|
|
image: ghcr.io/hotio/sonarr:latest
|
|
restart: always
|
|
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
|
|
|
|
|
|
|
|
volumes:
|
|
data:
|
|
driver: local
|
|
driver_opts:
|
|
type: nfs
|
|
o: "addr=192.168.7.106,nolock,soft,rw"
|
|
device: ":/chris"
|