Skip to content

jacob-thompson/jacob-thompson.github.io

Repository files navigation

jacob-thompson.github.io

Source code for my website.

Running Locally

Install Dependencies

Ubuntu/Debian
sudo apt install ruby-dev ruby-bundler nodejs
macOS
brew install ruby
brew install node
gem install bundler

Run

bundle install
jekyll serve -l -H localhost

Docker

You can use the provided Dockerfile to build a container that will run the site for you if you have Docker installed.

Build
docker build -t jekyll-site .
Run
docker run -p 4000:4000 --rm -v $(pwd):/usr/src/app jekyll-site