Files
docker-docs/docker-compose.yml
Sebastiaan van Stijn ebc86d840a compose file: use v3 and no volume
The current target didn't have jekyll installed, so mounting the
source-files didn't do anything.

This patch removes the bind-mount.

Alternatively, we could switch back to using a jekyll stage (with
automatic rebuilding).

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-02-24 13:56:22 +01:00

11 lines
160 B
YAML

version: "3.7"
services:
docs:
build:
context: .
args:
- ENABLE_ARCHIVES=false
image: docs/docstage
ports:
- "4000:4000"