forked from bigchaindb/bigchaindb-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
88 lines (85 loc) · 2.26 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Copyright BigchainDB GmbH and BigchainDB contributors
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
# Code is Apache-2.0 and docs are CC-BY-4.0
version: '2.1'
services:
bigchaindb-driver:
depends_on:
- bigchaindb
build:
context: .
dockerfile: ./compose/bigchaindb_driver/Dockerfile
volumes:
- ./docs:/usr/src/app/docs
- ./tests:/usr/src/app/tests
- ./bigchaindb_driver:/usr/src/app/bigchaindb_driver
- ./setup.py:/usr/src/app/setup.py
- ./tox.ini:/usr/src/app/tox.ini
- ./htmlcov:/usr/src/app/htmlcov
- ./coverage.xml:/usr/src/app/coverage.xml
environment:
BDB_HOST: bigchaindb
BIGCHAINDB_DATABASE_BACKEND: mongodb
command: pytest -v
mongodb:
image: mongo:3.6
ports:
- "27017"
command: mongod
bigchaindb:
depends_on:
- mongodb
- tendermint
build:
context: .
dockerfile: ./compose/bigchaindb_server/Dockerfile
args:
branch: master
backend: localmongodb
environment:
BIGCHAINDB_DATABASE_HOST: mongodb
BIGCHAINDB_DATABASE_PORT: 27017
BIGCHAINDB_SERVER_BIND: 0.0.0.0:9984
BIGCHAINDB_WSSERVER_HOST: 0.0.0.0
BIGCHAINDB_TENDERMINT_HOST: tendermint
BIGCHAINDB_TENDERMINT_PORT: 26657
ports:
- "9984"
- "9985"
- "26658"
healthcheck:
test: ["CMD", "bash", "-c", "curl http://bigchaindb:9984 && curl http://tendermint:26657/abci_query"]
interval: 3s
timeout: 5s
retries: 3
command: bigchaindb -l DEBUG start
tendermint:
image: tendermint/tendermint:0.22.8
entrypoint: ''
ports:
- "26656:26656"
- "26657:26657"
command: sh -c "tendermint init && tendermint node --consensus.create_empty_blocks=false --proxy_app=tcp://bigchaindb:26658"
bdb:
image: busybox
depends_on:
bigchaindb:
condition: service_healthy
# Build docs only
# docker-compose build bdocs
# docker-compose up -d bdocs
bdocs:
depends_on:
- vdocs
build:
context: .
dockerfile: ./compose/bigchaindb_driver/Dockerfile
volumes:
- .:/usr/src/app/
command: make -C docs html
vdocs:
image: nginx
ports:
- '55555:80'
volumes:
- ./docs/_build/html:/usr/share/nginx/html