A Jekyll based website hosted on Netlify.
Deployment URL: bovem.netlify.app.
My portfolio and blog.
- Jekyll
- Ruby
- Docker
Install docker and docker-compose. Or install podman.
- Build container image from Containerfile
podman build --tag jekyll_blog -f ./Containerfile
- Start
jekyll_blog
container from the container image
podman run -d --name jekyll_blog -p 7000:7000 -v .:/srv/jekyll:Z jekyll_blog
- Visit
localhost:7000
in your web browser.