diff options
author | Efraim Flashner | 2020-06-16 10:01:40 +0300 |
---|---|---|
committer | Efraim Flashner | 2020-06-16 10:08:15 +0300 |
commit | f4c3abf2b8625e73c8aa945c5be1ee3f4b6715be (patch) | |
tree | e5a88f5f22f1f79cec171b1c474e1fb41bd47717 /gn/services | |
parent | 6f3f24b04d2d5d59d466ec74535d2257807c078b (diff) | |
download | guix-bioinformatics-f4c3abf2b8625e73c8aa945c5be1ee3f4b6715be.tar.gz |
containerize rn6-assembly app
Diffstat (limited to 'gn/services')
-rw-r--r-- | gn/services/rn6-assembly-container.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gn/services/rn6-assembly-container.scm b/gn/services/rn6-assembly-container.scm new file mode 100644 index 0000000..44056c3 --- /dev/null +++ b/gn/services/rn6-assembly-container.scm @@ -0,0 +1,24 @@ +(define-module (gn services rn6-assembly-container)) + +(use-modules (gnu) + (gn packages bioinformatics) + (gn services rshiny)) + +(operating-system + (host-name "rn6-assembly") + (timezone "Etc/UTC") + (locale "en_US.utf8") + + (bootloader (bootloader-configuration + (bootloader grub-bootloader) + (target "does-not-matter"))) + (file-systems %base-file-systems) + ;; No firmware for VMs. + (firmware '()) + ;; We only need a few packages inside the container. + (packages '()) + + (services (list (service rshiny-service-type + (rshiny-configuration + (package rn6-assembly-error-app) + (binary "rn6-assembly-error-app")))))) |