diff mbox

[ovs-dev,1/4] Integrate docker

Message ID 20161213175724.17447-2-stephen@that.guru
State Accepted
Headers show

Commit Message

Stephen Finucane Dec. 13, 2016, 5:57 p.m. UTC
This means you don't need to install Ruby and requirements to build the
website locally. Jekyll 2.x is used as there are incompatible plugins
present - an issue which should be resolved separately.

Signed-off-by: Stephen Finucane <stephen@that.guru>
---
 docker-compose.yml | 7 +++++++
 1 file changed, 7 insertions(+)
 create mode 100644 docker-compose.yml
diff mbox

Patch

diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..3f124db
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,7 @@ 
+jekyll:
+    image: jekyll/jekyll:2
+    command: jekyll serve --watch
+    ports:
+        - 4000:4000
+    volumes:
+        - .:/srv/jekyll