working local build of gh pages

This commit is contained in:
Paul Gauthier 2024-06-05 09:23:28 -07:00
parent 72493f0920
commit 46b953ebeb
3 changed files with 17 additions and 11 deletions

View file

@ -1,4 +1,12 @@
#!/bin/bash
# Run the Docker container
docker run --rm --network="host" -v "$PWD:/srv/jekyll" -p 4000:4000 --entrypoint /bin/bash -it my-jekyll-site
docker run \
--rm \
-v "$PWD:/site" \
-p 4000:4000 \
my-jekyll-site
# -e HISTFILE=/srv/jekyll/.bash_history \
# --entrypoint /bin/bash \
# -it \