add radarr service
This commit is contained in:
parent
7b9f0e0ca5
commit
7f5a35d936
@ -10,22 +10,73 @@ networks:
|
||||
name: apps
|
||||
|
||||
services:
|
||||
jellyfin:
|
||||
container_name: jellyfin
|
||||
image: jellyfin # FIX
|
||||
# jellyfin:
|
||||
# container_name: jellyfin
|
||||
# image: jellyfin # FIX
|
||||
# restart: unless-stopped
|
||||
# networks:
|
||||
# apps:
|
||||
# ipv4_address: 10.96.10.101
|
||||
# link_local_ips: []
|
||||
# volumes:
|
||||
# - /mnt/hdd/apps/jellyfin:/config
|
||||
# - /mnt/hdd/media:/media
|
||||
# - /mnt/hdd/apps/certbot/etc:/etc/letsencrypt
|
||||
# - /mnt/hdd/apps/certbot/var:/var/lib/letsencrypt
|
||||
|
||||
cert-sorter:
|
||||
container_name: cert-sorter
|
||||
image: code.balsillie.net/michael/containers/cert-sorter:latest
|
||||
pull_policy: always
|
||||
restart: 'no'
|
||||
volumes:
|
||||
- /mnt/hdd/apps/certbot/etc:/etc/letsencrypt
|
||||
- /mnt/hdd/apps/cert-1000:/dest/1000
|
||||
network_mode: none
|
||||
|
||||
qbittorrent:
|
||||
container_name: torrent
|
||||
image: code.balsillie.net/michael/containers/qbittorrent:latest
|
||||
pull_policy: always
|
||||
depends_on:
|
||||
cert-sorter:
|
||||
condition: service_completed_successfully
|
||||
required: true
|
||||
restart: true
|
||||
restart: unless-stopped
|
||||
hostname: torrent
|
||||
domainname: balsillie.house
|
||||
dns: 10.2.0.1
|
||||
user: ubuntu
|
||||
networks:
|
||||
apps:
|
||||
ipv4_address: 10.96.10.101
|
||||
ipv4_address: 10.96.10.102
|
||||
link_local_ips: []
|
||||
volumes:
|
||||
- /mnt/hdd/apps/jellyfin:/config
|
||||
- /mnt/hdd/apps/torrent:/config
|
||||
- /mnt/hdd/media:/media
|
||||
- /mnt/hdd/apps/certbot/etc:/etc/letsencrypt
|
||||
- /mnt/hdd/apps/certbot/var:/var/lib/letsencrypt
|
||||
- /mnt/hdd/apps/cert-1000:/cert
|
||||
|
||||
# qbittorrent
|
||||
radarr:
|
||||
container_name: radarr
|
||||
image: code.balsillie.net/michael/containers/radarr:latest
|
||||
pull_policy: always
|
||||
depends_on:
|
||||
cert-sorter:
|
||||
condition: service_completed_successfully
|
||||
required: true
|
||||
restart: true
|
||||
restart: unless-stopped
|
||||
hostname: radarr
|
||||
domainname: balsillie.house
|
||||
user: ubuntu
|
||||
networks:
|
||||
apps:
|
||||
ipv4_address: 10.96.10.104
|
||||
link_local_ips: []
|
||||
volumes:
|
||||
- /mnt/hdd/apps/radarr:/config
|
||||
- /mnt/hdd/media:/media
|
||||
- /mnt/hdd/apps/cert-1000:/cert
|
||||
|
||||
# sonarr
|
||||
|
||||
# radarr
|
Loading…
Reference in New Issue
Block a user