summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 10 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index da69beb..811820c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,12 @@
-# pacman -Sy ruby ruby-bundler
-BUNDLE := bundle
-
serve:
- ${BUNDLE} exec jekyll serve -w -I -D -H 0.0.0.0
-
+ docker run -it --rm \
+ -v $$(pwd):/srv/jekyll \
+ -p 4000:4000 \
+ jekyll/jekyll \
+ jekyll serve -w -I -D -H 0.0.0.0
+
update:
- ${BUNDLE} update
+ docker run -it --rm \
+ -v $$(pwd):/srv/jekyll \
+ jekyll/jekyll \
+ bundle update