diff options
author | Thanos Apollo <[email protected]> | 2024-07-09 06:06:34 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-07-09 06:06:34 +0300 |
commit | af70ebcbd5c4f0435915d9673c6987983da32e37 (patch) | |
tree | eecf064e67a0427e175674551581f46b06190f01 /guix | |
parent | 6abd91d7872394734c7492317e81a818c397fe60 (diff) |
guix: system: Add rss-bridge container for zeus
Diffstat (limited to 'guix')
-rw-r--r-- | guix/system-create.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/guix/system-create.scm b/guix/system-create.scm index 87cdb0e..363e303 100644 --- a/guix/system-create.scm +++ b/guix/system-create.scm @@ -163,7 +163,12 @@ (volumes '(("/home/jelly/config" . "/config") ("/home/jelly/cache" . "/cache") - ("/hdd" . "/media"))))))) + ("/hdd" . "/media")))) + (oci-container-configuration + (image "rssbridge/rss-bridge") + (network "host") + (ports + '(("3000" . "80"))))))) ;; For everything else (list)))) |