parent
0cb0f5ec62
commit
d707d8aa74
44
Dockerfile
Normal file
44
Dockerfile
Normal file
@ -0,0 +1,44 @@
|
||||
FROM mangar/jekyll:1.0
|
||||
|
||||
MAINTAINER Marcio Mangar "marcio.mangar@gmail.com"
|
||||
|
||||
RUN gem install jekyll -v 3.1.6
|
||||
RUN gem install bundler
|
||||
|
||||
RUN gem install execjs
|
||||
RUN gem install therubyracer
|
||||
RUN gem install github-pages
|
||||
RUN gem install jekyll-paginate
|
||||
RUN gem install jekyll-seo-tag
|
||||
RUN gem install jekyll-gist
|
||||
RUN gem install json -v 1.8.3
|
||||
|
||||
RUN gem install minitest -v 5.9.0
|
||||
RUN gem install colorator -v 0.1
|
||||
RUN gem install ffi -v 1.9.10
|
||||
RUN gem install kramdown -v 1.10.0
|
||||
RUN gem install rouge -v 1.10.1
|
||||
RUN gem install pkg-config -v 1.1.7
|
||||
RUN gem install terminal-table -v 1.6.0
|
||||
RUN gem install ethon -v 0.9.0
|
||||
RUN gem install nokogiri -v 1.6.8
|
||||
RUN gem install activesupport -v 4.2.6
|
||||
RUN gem install html-pipeline -v 2.4.1
|
||||
RUN gem install jekyll-watch -v 1.4.0
|
||||
RUN gem install github-pages-health-check -v 1.1.0
|
||||
RUN gem install jekyll-github-metadata -v 2.0.0
|
||||
RUN gem install jekyll-mentions -v 1.1.2
|
||||
RUN gem install jekyll-redirect-from -v 0.10.0
|
||||
RUN gem install jemoji -v 0.6.2
|
||||
RUN gem install github-pages -v 82
|
||||
|
||||
|
||||
|
||||
RUN mkdir -p /app
|
||||
ADD ./ /app
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
EXPOSE 4000
|
||||
|
||||
CMD bundle exec jekyll serve
|
18
README.md
18
README.md
@ -190,19 +190,21 @@ Want your website featured here? [Contact me](http://deanattali.com/aboutme#cont
|
||||
| [epwalsh.com](https://epwalsh.com) | Evan Pete Walsh | PhD candidate (Statistics and Mathematics) at Iowa State University |
|
||||
| [otomatikmuhendis.com](http://otomatikmuhendis.com/) | Olcay Bayram | Software engineer |
|
||||
|
||||
### Very advanced: Local development
|
||||
|
||||
Beautiful Jekyll is meant to be so simple to use that you can do it all within the browser. However, if you'd like to develop locally on your own machine, that's possible too if you're comfortable with command line. Follow these simple steps to do that with Vagrant:
|
||||
### Docker
|
||||
|
||||
1. Install [VirtualBox](http://virtualbox.org) and [Vagrant](https://www.vagrantup.com)
|
||||
Beautiful Jekyll is meant to be so simple to use that you can do it all within the browser. However, if you'd like to develop locally on your own machine, that's possible too if you're comfortable with command line. Follow these simple steps to do that with Docker:
|
||||
|
||||
1. Make sure that you have Docker installed on your local environment. More details can be found [here](https://docs.docker.com/engine/installation/)
|
||||
2. Clone your fork `git clone git@github.com:yourusername/yourusername.github.io.git`
|
||||
3. Inside your repository folder, run `vagrant up`
|
||||
4. View your website at `http://0.0.0.0:4000` on *nix or `http://127.0.0.1:4000` on Windows.
|
||||
5. Commit any changes and push everything to the master branch of your GitHub repository. GitHub Pages will then rebuild and serve your website automatically.
|
||||
3. Inside your repository folder, run:
|
||||
```
|
||||
docker run -p 4000:4000 -v `pwd`:/app mangar/jekyll:1.1 bash -c "bundle install; bundle exec jekyll serve"
|
||||
```
|
||||
4. View your website at <http://localhost:4000>.
|
||||
|
||||
|
||||
Disclaimer: I personally am NOT using local development so I don't know much about running Jekyll locally. If you follow this route, please don't ask me questions because unfortunately I honestly won't be able to help!
|
||||
|
||||
Additionally, if you choose to deploy Jekyll using a local ruby installation, you can tell Jekyll to automatically categorize your blog posts by tags. You just need to set `link-tags: true` in `_config.yml`. Jekyll will then generate a new page for each unique tag which lists all of the posts that belong to that tag.
|
||||
|
||||
### Credits
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user