Merge upstream

This commit is contained in:
2020-01-26 00:28:11 -05:00
parent 0f2e183485
commit 12bc37ec52
44 changed files with 1696 additions and 197 deletions

22
blog.bryanroessler.com/build.sh Executable file
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 atomjekylltemp .
podman run \
--rm \
-it \
-p 4000:4000 \
-v "$PWD:/srv/jekyll" \
-v "$PWD/vendor/bundle:/usr/local/bundle" \
localhost/atomjekylltemp
#podman rmi localhost/atomjekylltemp