Skip to content

Commit

Permalink
Merge branch 'additional-docs'
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcinnestaylor committed Sep 10, 2024
2 parents 697991d + b6d57e6 commit e8e1e90
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM ruby:latest

RUN gem install bundler

WORKDIR /usr/src/app

COPY . .

RUN bundle install

EXPOSE 4000

ENTRYPOINT [ "bundle", "exec", "jekyll" ]
CMD [ "serve", "--host=0.0.0.0" ]
2 changes: 2 additions & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,5 @@ plugins:
- jekyll-seo-tag
- jekyll-github-metadata
- jekyll-include-cache

exclude: [.gitignore, docker-compose.yml, Dockerfile, Gemfile, Gemfile.lock]
9 changes: 9 additions & 0 deletions docs/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: docs-website
services:
jekyll:
build:
context: ./
volumes:
- ./:/usr/src/app
ports:
- 4000:4000

0 comments on commit e8e1e90

Please sign in to comment.