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
- Host: GitHub
- URL: https://github.com/lowply/jekyll-docker
- Owner: lowply
- Created: 2020-09-27T13:58:59.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-29T00:08:24.000Z (over 4 years ago)
- Last Synced: 2025-03-15T07:07:17.732Z (3 months ago)
- Language: Dockerfile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```