Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jamesbrink/jamesbrink.github.io

Personal Website
https://github.com/jamesbrink/jamesbrink.github.io

Last synced: about 1 month ago
JSON representation

Personal Website

Awesome Lists containing this project

README

        

James Brink Personal Website
============================

This repo is for my personal website and blog.

This is a [jekyll] (http://jekyllrb.com/) website with a docker container that extends off of the [official jekyll container] (https://github.com/jekyll/docker-jekyll)

## Development

```sh
docker run -it --rm --volume=$(pwd):/srv/jekyll -p 4000:4000 jamesbrink/website jekyll s
```

## Production

This container uses nginx for production. Build and deploy with the following.

```sh
docker build -t jamesbrink/website .
docker run -t -d -p 80:80 jamesbrink/website
```