Initial Jekyll project structure; added script to start Docker container for development

This commit is contained in:
2021-08-22 02:08:03 -04:00
parent 3b6543ae19
commit 1187777ba0
9 changed files with 256 additions and 0 deletions

8
bin/docker-watch.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
docker run -d --rm \
--volume="$PWD/src:/srv/jekyll" \
--publish 4000:4000 \
--name="jekyll" \
jekyll/jekyll:4 \
jekyll serve