Merge upstream and update Gemfile.lock

This commit is contained in:
2020-01-26 01:40:06 -05:00
parent 12bc37ec52
commit 4b3f38dc61
47 changed files with 1648 additions and 194 deletions

View File

@@ -0,0 +1,22 @@
#!/usr/bin/env bash
# build and deploy
#podman build \
# --rm \
# -it \
# -v "$PWD:/srv/jekyll" \
# -v "$PWD/vendor/bundle:/usr/local/bundle" \
# -u 1000:1001 \
# jekyll:latest \
# bundle update
podman build -t atomjekylltemp2 .
podman run \
--rm \
-it \
-p 4001:4000 \
-v "$PWD:/srv/jekyll" \
-v "$PWD/vendor/bundle:/usr/local/bundle" \
localhost/atomjekylltemp2
#podman rmi localhost/atomjekylltemp_2