-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-compose.yml
68 lines (65 loc) · 1.67 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
---
# Copyright Planetmint GmbH and Planetmint 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:
planetmint-driver:
depends_on:
- planetmint
build:
context: .
dockerfile: ./compose/planetmint_driver/Dockerfile
volumes:
- ./docs:/usr/src/app/docs
- ./tests:/usr/src/app/tests
- ./planetmint_driver:/usr/src/app/planetmint_driver
- ./htmlcov:/usr/src/app/htmlcov
- ./coverage.xml:/usr/src/app/coverage.xml
environment:
BDB_HOST: planetmint
command: /bin/sh
planetmint:
image: ghcr.io/planetmint/planetmint-aio:latest
ports:
- "9984:9984"
- "9985:9985"
- "26656:26656"
- "26657:26657"
- "26660:26660"
command:
- /bin/bash
- -c
- |
/etc/init.d/tarantool start
tendermint init
tendermint node --consensus.create_empty_blocks = false --rpc.laddr=tcp://0.0.0.0:26657&
planetmint start
healthcheck:
test: ["CMD", "bash", "-c", "curl http://planetmint:9984 && curl http://planetmint:26657/abci_query"]
interval: 3s
timeout: 5s
retries: 5
bdb:
image: busybox
depends_on:
planetmint:
condition: service_healthy
# Build docs only
# docker-compose build bdocs
# docker-compose up -d bdocs
bdocs:
depends_on:
- vdocs
build:
context: .
dockerfile: ./compose/planetmint_driver/Dockerfile
volumes:
- .:/usr/src/app/
command: poetry run make -C docs html
vdocs:
image: nginx
ports:
- '55555:80'
volumes:
- ./docs/_build/html:/usr/share/nginx/html