mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

It does not use the Dockerfile for the localmongodb/tendermint backends. Solution: Use ./compose/bigchaindb-server/Dockerfile
19 lines
359 B
YAML
19 lines
359 B
YAML
version: '3'
|
|
|
|
services:
|
|
bdocs:
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/bigchaindb-server/Dockerfile
|
|
args:
|
|
backend: localmongodb
|
|
volumes:
|
|
- .:/usr/src/app/
|
|
command: make -C docs/server html
|
|
vdocs:
|
|
image: nginx
|
|
ports:
|
|
- '33333:80'
|
|
volumes:
|
|
- ./docs/server/build/html:/usr/share/nginx/html
|