forked from Murali-group/Beeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
initialize.sh
executable file
·65 lines (45 loc) · 1.89 KB
/
initialize.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/bash
# Building docker for the different algorithms
echo "This may take a while..."
BASEDIR=$(pwd)
# You may remove the -q flag if you want to see the docker build status
cd $BASEDIR/Algorithms/ARBORETO
docker build -q -t arboreto:base .
echo "Docker container for ARBORETO is built and tagged as arboreto:base"
cd $BASEDIR/Algorithms/GRISLI/
docker build -q -t grisli:base .
echo "Docker container for GRISLI is built and tagged as grisli:base"
cd $BASEDIR/Algorithms/GRNVBEM/
docker build -q -t grnvbem:base .
echo "Docker container for GRNVBEM is built and tagged as grnvbem:base"
cd $BASEDIR/Algorithms/JUMP3/
docker build -q -t jump3:base .
echo "Docker container for JUMP3 is built and tagged as jump3:base"
cd $BASEDIR/Algorithms/LEAP/
docker build -q -t leap:base .
echo "Docker container for LEAP is built and tagged as leap:base"
cd $BASEDIR/Algorithms/PIDC/
docker build -q -t pidc:base .
echo "Docker container for PIDC is built and tagged as pidc:base"
cd $BASEDIR/Algorithms/PNI/
docker build -q -t pni:base .
echo "Docker container for PNI is built and tagged as pni:base"
cd $BASEDIR/Algorithms/PPCOR/
docker build -q -t ppcor:base .
echo "Docker container for PPCOR is built and tagged as ppcor:base"
cd $BASEDIR/Algorithms/SINGE/
docker build -q -t singe:base .
echo "Docker container for SINGE is built and tagged as singe:base"
cd $BASEDIR/Algorithms/SCNS/
docker build -q -t scns:base .
echo "Docker container for SCNS is built and tagged as scns:base"
cd $BASEDIR/Algorithms/SCODE/
docker build -q -t scode:base .
echo "Docker container for SCODE is built and tagged as scode:base"
cd $BASEDIR/Algorithms/SCRIBE/
docker build -q -t scribe:base .
echo "Docker container for SCRIBE is built and tagged as sincerities:base"
cd $BASEDIR/Algorithms/SINCERITIES/
docker build -q -t sincerities:base .
echo "Docker container for SINCERITIES is built and tagged as sincerities:base"
cd $BASEDIR