Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jamesbrink/jamesbrink.github.io
- Owner: jamesbrink
- License: mit
- Created: 2014-04-12T00:34:00.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-10-06T06:24:22.000Z (about 2 years ago)
- Last Synced: 2024-10-21T02:05:57.314Z (2 months ago)
- Language: JavaScript
- Homepage: https://jamesbrink.github.com/
- Size: 20.9 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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
```