add sonarr configs
This commit is contained in:
parent
2a37483c01
commit
d9b7cd46e3
2 changed files with 20 additions and 1 deletions
|
|
@ -41,4 +41,9 @@
|
|||
handle @ente {
|
||||
reverse_proxy ente-photos:8080
|
||||
}
|
||||
|
||||
@sonarr host http://sonarr.akeley.tech
|
||||
handle @ente {
|
||||
reverse_proxy sonarr:8989
|
||||
}
|
||||
}
|
||||
|
|
|
|||
16
config.scm
16
config.scm
|
|
@ -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")
|
||||
|
|
|
|||
Reference in a new issue