generated from just-the-docs/just-the-docs-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from s4b7r/fix-local-test-setup
Fix local setup for test-serving just-the-docs pages
- Loading branch information
Showing
3 changed files
with
7 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM jekyll/jekyll:latest | ||
COPY Gemfile Gemfile.lock /srv/jekyll/ | ||
COPY Gemfile /srv/jekyll/ | ||
RUN bundle install | ||
CMD bundle exec jekyll serve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem "jekyll", "~> 4.3.2" # installed by `gem jekyll` | ||
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2 | ||
gem "github-pages", group: :jekyll_plugins # compatibility to GitHub Pages - if used, no explicit jekyll gem needed | ||
# gem "jekyll", "~> 4.3.2" # installed by `gem jekyll` | ||
gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2 | ||
|
||
# gem "just-the-docs", "0.7.0" # pinned to the current release | ||
gem "just-the-docs" # always download the latest release | ||
|
||
gem "just-the-docs", "0.7.0" # pinned to the current release | ||
# gem "just-the-docs" # always download the latest release |
This file was deleted.
Oops, something went wrong.