bigchaindb/docker-compose.docs.yml
Sylvain Bellemare 06cbd9e2de Problem: docker-compose.docs.yml it outdated
It does not use the Dockerfile for the localmongodb/tendermint backends.

Solution: Use ./compose/bigchaindb-server/Dockerfile
2018-02-26 16:26:40 +01:00

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