add jellyfin
This commit is contained in:
parent
7f24443fcb
commit
e3b69b0892
1 changed files with 15 additions and 1 deletions
16
config.scm
16
config.scm
|
|
@ -59,7 +59,7 @@
|
||||||
'("/data/docker/volumes/caddy/config" . "/config"))))
|
'("/data/docker/volumes/caddy/config" . "/config"))))
|
||||||
|
|
||||||
(oci-container-configuration
|
(oci-container-configuration
|
||||||
(image "docker.io/actualbudget/actual-server:25.3.1")
|
(image "docker.io/actualbudget/actual-server:latest")
|
||||||
(provision "actual")
|
(provision "actual")
|
||||||
(network "sandbox")
|
(network "sandbox")
|
||||||
(ports '(
|
(ports '(
|
||||||
|
|
@ -138,6 +138,20 @@
|
||||||
'("/data/docker/volumes/plex/transcode" . "/transcode")
|
'("/data/docker/volumes/plex/transcode" . "/transcode")
|
||||||
'("/data" . "/data:rw"))))
|
'("/data" . "/data:rw"))))
|
||||||
|
|
||||||
|
(oci-container-configuration
|
||||||
|
(image "jellyfin/jellyfin:latest")
|
||||||
|
(provision "jellyfin")
|
||||||
|
(network "sandbox")
|
||||||
|
(ports '(
|
||||||
|
("8096" . "8096")))
|
||||||
|
(volumes (list
|
||||||
|
'("/data/docker/volumes/jellyfin/config" . "/config")
|
||||||
|
'("/data/docker/volumes/jellyfin/cache" . "/cache")
|
||||||
|
'("/data/shows" . "/shows")
|
||||||
|
'("/data/movies" . "/movies")
|
||||||
|
'("/data/music" . "/music"))))
|
||||||
|
|
||||||
|
|
||||||
(oci-container-configuration
|
(oci-container-configuration
|
||||||
(image "postgres:15")
|
(image "postgres:15")
|
||||||
(provision "ente-db")
|
(provision "ente-db")
|
||||||
|
|
|
||||||
Reference in a new issue