Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 666 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 666 Bytes

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