1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-10 20:05:02 +02:00
bigchaindb/docker-compose.yml
2016-02-11 14:14:35 +01:00

24 lines
349 B
YAML

rethinkdb:
image: rethinkdb
ports:
- "9999:8080"
- "28015"
volumes_from:
- rethinkdb-data
rethinkdb-data:
image: rethinkdb
volumes:
- /data
command: "true"
bigchaindb:
build: .
volumes:
- ./:/usr/src/app/
links:
- rethinkdb
environment:
BIGCHAIN_DATABASE_HOST: rethinkdb
command: bigchaindb start