blob: 6ff99bae94c0f7a4f9ad09899dd2afe5b1ec9c3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# This version for the bnw guix profile which includes guix-bioinformatics, using bnw-channels.scm.
#
# Note the deployment shifted, see https://issues.genenetwork.org/issues/systems/apps
# $(/home/shepherd/guix-profiles/bnw/bin/guix system container /home/shepherd/guix-bioinformatics/gn/services/bnw-container.scm --share=/home/shepherd/logs/bnw-server=/var/log --network)
# Here we simply build the system container and link it:
rm -vf /usr/local/bin/bnw-app-container
/home/shepherd/guix-profiles/bnw/bin/guix system container /home/shepherd/guix-bioinformatics/gn/services/bnw-container.scm --share=/home/shepherd/logs/bnw-server=/var/log --network --root=/usr/local/bin/bnw-app-container
/usr/local/bin/bnw-app-container
#$(/home/shepherd/guix-profiles/bnw/bin/guix system container -L /home/shepherd/guix-past/modules -L /home/shepherd/guix-bioinformatics /home/shepherd/guix-bioinformatics/gn/services/bnw-container.scm --share=/home/shepherd/logs/bnw-server=/var/log --network)
|