Skip to content

codeaprendiz/codeaprendiz.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Static Portfolio Website Using Github Pages

Note

This is a work in progress.

Run Locally

Option 1 — Named Docker volume (gems managed by Docker):

docker run --rm -it \
  --platform linux/amd64 \
  -v "$PWD:/srv/jekyll" \
  -v jekyll-gems:/usr/local/bundle \
  -p 4000:4000 \
  jekyll/jekyll:latest \
  jekyll serve --watch

Option 2 — Local folder cache (gems visible in repo, ignored by git):

docker run --rm -it \
  --platform linux/amd64 \
  -v "$PWD:/srv/jekyll" \
  -v "$PWD/.jekyll-bundle:/usr/local/bundle" \
  -p 4000:4000 \
  jekyll/jekyll:latest \
  jekyll serve --watch

Open http://localhost:4000

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors