bigchaindb/docker-compose.docs.yml
Sylvain Bellemare f32649d802 Problem: docker-compose.docs.yml version is 2
Solution: Update the version to 3 (latest)
2018-02-26 16:26:40 +01:00

17 lines
295 B
YAML

version: '3'
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