mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
17 lines
295 B
YAML
17 lines
295 B
YAML
version: '2'
|
|
|
|
services:
|
|
bdocs:
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile-dev
|
|
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
|