aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..32f978a
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,18 @@
+version: "2"
+services:
+ jekyllbuild:
+ build:
+ context: "."
+ dockerfile: "jekyll.docker"
+ volumes_from:
+ - nginx
+
+ nginx:
+ build:
+ context: "."
+ dockerfile: "nginx.docker"
+ ports:
+ - "8080:80"
+ volumes:
+ - /usr/share/nginx/html
+ - ".:/data/site-git"