Skip to content

Instantly share code, notes, and snippets.

@squeuei
Created May 20, 2025 14:02
Show Gist options
  • Save squeuei/389966bab5ace094c888721a164153fb to your computer and use it in GitHub Desktop.
Save squeuei/389966bab5ace094c888721a164153fb to your computer and use it in GitHub Desktop.
jekyll serve with podman
podman run -it --rm -v "$(pwd):/app:z" -p 4000:4000 ruby:slim sh -c "
cd /app && \
apt-get update && \
apt-get install -y build-essential git && \
bundle install && \
bundle exec jekyll serve --host 0.0.0.0
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment