mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
11 lines
250 B
Bash
11 lines
250 B
Bash
#!/bin/bash
|
|
|
|
# build mongodb image
|
|
docker build -t mongodb:bdb -f Dockerfile.mongo .
|
|
|
|
# build mongodb image
|
|
docker build -t tendermint:bdb -f Dockerfile.tendermint .
|
|
|
|
# build bigchaindb image
|
|
docker build -t bigchaindb:itest -f ../Dockerfile.itest .
|