mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-12-02 05:57:21 +01:00
10 lines
327 B
Bash
10 lines
327 B
Bash
|
#!/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
|
||
|
|