From 1594ba6a73cd586a121b74a1c64190d13970ec29 Mon Sep 17 00:00:00 2001 From: Matt Wang Date: Mon, 6 Jan 2025 00:44:16 -0800 Subject: [PATCH] Remove (theme)`Dockerfile` (#1299) It doesn't seem like any of our theme developers use this (out of date) `Dockerfile`, and we're probably better served placing more of this in the theme template (so users can consume it). I think this is part of our overall movement to not have users of our theme directly clone this repo. --- Dockerfile | 12 ------------ README.md | 16 +++++----------- docker-compose.yml | 14 -------------- 3 files changed, 5 insertions(+), 37 deletions(-) delete mode 100644 Dockerfile delete mode 100644 docker-compose.yml diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index a499513..0000000 --- a/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM ruby:2.7 - -ENV LC_ALL C.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US.UTF-8 - -WORKDIR /usr/src/app - -COPY Gemfile just-the-docs.gemspec ./ -RUN gem install bundler && bundle install - -EXPOSE 4000 diff --git a/README.md b/README.md index d8b76b8..bf157de 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ More specifically, the created site: Other than that, you're free to customize sites that you create with the template, however you like. You can easily change the versions of `just-the-docs` and Jekyll it uses, as well as adding further plugins. -### Use RubyGems +### Use as a Ruby Gem Alternatively, you can install the theme as a Ruby Gem, without creating a new site. @@ -48,17 +48,11 @@ And add this line to your Jekyll site's `_config.yml`: theme: just-the-docs ``` -And then execute: +And then install all relevant dependencies: - $ bundle - -Or install it yourself as: - - $ gem install just-the-docs - -Alternatively, you can run it inside Docker while developing your site - - $ docker-compose up +```shell +$ bundle +``` ## Usage diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 576c7ed..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,14 +0,0 @@ -version: "3.5" - -services: - jekyll: - build: - context: ./ - ports: - - 4000:4000 - volumes: - - .:/usr/src/app - stdin_open: true - tty: true - command: bundle exec jekyll serve -H 0.0.0.0 -t -