1
0
mirror of https://github.com/oceanprotocol/barge.git synced 2024-12-02 05:57:21 +01:00
barge/ocean-db/bdb-install.sh

10 lines
327 B
Bash
Raw Normal View History

2018-04-26 18:38:23 +02:00
#!/bin/sh -x
curl -L https://github.com/bigchaindb/bigchaindb/archive/master.zip -o bigchaindb.zip
#unzip bigchaindb.zip -d . && mv bigchaindb-master/* . && rm -rf bigchaindb-master bigchaindb.zip
unzip bigchaindb.zip -d . && cd bigchaindb-master
docker-compose build bigchaindb
cd ..
rm -rf bigchaindb-master bigchaindb.zip