add sonarr configs

This commit is contained in:
bartronx7 2025-03-28 14:38:56 -05:00
parent 2a37483c01
commit d9b7cd46e3
2 changed files with 20 additions and 1 deletions

View file

@ -41,4 +41,9 @@
handle @ente {
reverse_proxy ente-photos:8080
}
@sonarr host http://sonarr.akeley.tech
handle @ente {
reverse_proxy sonarr:8989
}
}

View file

@ -150,7 +150,21 @@
'("/data/shows" . "/shows")
'("/data/movies" . "/movies")
'("/data/music" . "/music"))))
(oci-container-configuration
(image "lscr.io/linuxserver/sonarr:latest")
(provision "sonarr")
(network "sandbox")
(ports '(
("8989" . "8989")))
(environment (list
'("PUID" . "1000")
'("PGID" . "1000")
'("TZ" . "US/America/Chicago")))
(volumes (list
'("/data/docker/volumes/sonarr" . "/config")
'("/data/shows" . "/tv")
'("/home/bartronx7/downloads" . "/downloads"))))
(oci-container-configuration
(image "postgres:15")