david/scripts-archive
david
/
scripts-archive
Archived
1
0
Fork 0
This repository has been archived on 2022-04-16. You can view files and clone it, but cannot push or open issues or pull requests.
scripts-archive/jekyll.sh

10 lines
215 B
Bash
Executable File

#!/bin/bash
export JEKYLL_VERSION=4.2.0
docker run --rm \
--volume="$PWD:/srv/jekyll" \
--volume="$HOME/Public/docs:/srv/docs" \
-p 127.0.0.1:4000:4000/tcp \
-it jekyll/jekyll:$JEKYLL_VERSION \
jekyll $@