blob: 1b595838afc9067694b6ec012b9e0b1cb48185e8 [file]
#!/bin/bash
docker.build:
docker build -f Dockerfile -t kylin-document:latest .
document.build:
docker run --volume="$(shell pwd):/srv/jekyll" --rm -it kylin-document:latest jekyll build
runserver:
docker run --volume="$(shell pwd):/srv/jekyll" -p 4000:4000 --rm -it kylin-document:latest jekyll server --watch
clean:
rm -rf _site