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

https://github.com/paulbrodner/paulbrodner.github.io

My Personal Blog https://paulbrodner.github.io
https://github.com/paulbrodner/paulbrodner.github.io

automation blog jekyll ruby

Last synced: 5 months ago
JSON representation

My Personal Blog https://paulbrodner.github.io

Awesome Lists containing this project

README

          

# paulbrodner.github.io
My Personal Blog https://paulbrodner.github.io

[![Build Status](https://travis-ci.org/paulbrodner/paulbrodner.github.io.svg?branch=master)](https://travis-ci.org/paulbrodner/paulbrodner.github.io) ![visitors](https://visitor-badge.laobi.icu/badge?page_id=paulbrodner.github.io)

# run everithing in Docker
* build the image
```shell
docker build -t pbrodner-site .
```

* run the image
> this will have a shared volume from host to container, so we can update the site automatically

```
docker run -v ${PWD}:/site -it -p 4000:4000 pbrodner-site
```
* view site under: http://127.0.0.1:4000