Files
thehub/support/docker/.build.sh
TomZ 58deb9d359 Simplify docker scripts
Compress it down to 1 compile and one build-images script
which saves on compilation and simply makes it more managable.
2020-09-20 19:14:59 +02:00

30 lines
352 B
Bash
Executable File

cd /builds/thehub
mkdir build
cd build
cmake ..
make -j`nproc` install
cd /builds/startIndexer
mkdir build
cd build
cmake ..
make -j`nproc`
cd /builds/startHub
mkdir build
cd build
cmake ..
make -j`nproc`
cd /builds/startRestv02
mkdir build
cd build
cmake ..
make -j`nproc`
cd /builds/startBitcoreProxy
mkdir build
cd build
cmake ..
make -j`nproc`