Add separate docs for v0.8/v1
This commit is contained in:
parent
3150f98fc8
commit
d511d447f7
61 changed files with 1620 additions and 58 deletions
14
docs/Dockerfile
Normal file
14
docs/Dockerfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
FROM ruby:2.7.4
|
||||
|
||||
EXPOSE 4000
|
||||
|
||||
RUN gem update --system 3.4.22 && echo 'url: "http://localhost:4000"' > /_config.localhost.yml
|
||||
|
||||
COPY Gemfile .
|
||||
|
||||
RUN bundle install
|
||||
|
||||
ENV JEKYLL_ENV=docker
|
||||
|
||||
ENTRYPOINT [ "bundle", "exec", "jekyll"]
|
||||
CMD [ "serve", "--force_polling", "--host", "0.0.0.0", "--config", "./_config.yml,/_config.localhost.yml" ]
|
Loading…
Add table
Add a link
Reference in a new issue