From ebc86d840af371d70c8851f96c4076559a741b77 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 21 Feb 2020 10:49:42 +0100 Subject: [PATCH] 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 --- docker-compose.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 192b21e021..dcbf74bae5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,4 +1,4 @@ -version: "2" +version: "3.7" services: docs: build: @@ -8,5 +8,3 @@ services: image: docs/docstage ports: - "4000:4000" - volumes: - - "./:/usr/src/app"