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

https://github.com/lowply/jekyll-docker

Yet another docker container for jekyll
https://github.com/lowply/jekyll-docker

Last synced: 2 months ago
JSON representation

Yet another docker container for jekyll

Awesome Lists containing this project

README

        

# jekyll-docker

Yet another docker container for jekyll. Might be slower than running plain jekyll.

## New

```
docker run --rm -v $(pwd):/home lowply/jekyll-docker:latest jekyll new blog
```

## Serve

```
docker run --rm -p 4000:4000 -v $(pwd):/home lowply/jekyll-docker:latest bundle exec jekyll serve -H 0.0.0.0 -P 4000
```

## Build

```
make build
```