Skip to content

Commit a7e02a0

Browse files
committed
doc updates
1 parent 5750d5a commit a7e02a0

File tree

4 files changed

+11
-95
lines changed

4 files changed

+11
-95
lines changed

docs/Dockerfile

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
FROM ruby:2.7
1+
FROM ruby:3.1
22

3-
ENV LC_ALL C.UTF-8
4-
ENV LANG en_US.UTF-8
5-
ENV LANGUAGE en_US.UTF-8
3+
ENV LC_ALL=C.UTF-8
4+
ENV LANG=en_US.UTF-8
5+
ENV LANGUAGE=en_US.UTF-8
6+
ENV JEKYLL_LOG_LEVEL=debug
67

78
WORKDIR /usr/src/app
89

9-
COPY Gemfile just-the-docs.gemspec ./
10+
COPY . .
11+
RUN mv README.md index.md
1012
RUN gem install bundler && bundle install
1113

14+
RUN bundle exec jekyll build --baseurl "/DCSServerBot" --verbose --trace
15+
1216
EXPOSE 4000

docs/_config.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,5 @@ aux_links:
3737
kramdown:
3838
gfm_quirks: [paragraph_end]
3939
gfm_emojis: true
40-
syntax_highlighter: coderay
41-
syntax_highlighter_opts:
42-
line_numbers: table
43-
bold_every: 5
40+
syntax_highlighter: rouge
4441
header_links: true

docs/_plugins/auto_nav.rb

Lines changed: 0 additions & 83 deletions
This file was deleted.

docs/docker-compose.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: "3.5"
2-
31
services:
42
jekyll:
53
build:
@@ -10,4 +8,4 @@ services:
108
- .:/usr/src/app
119
stdin_open: true
1210
tty: true
13-
command: bundle exec jekyll serve -H 0.0.0.0 -t --force_polling
11+
command: bundle exec jekyll serve -H 0.0.0.0 -t --force_polling --verbose

0 commit comments

Comments
 (0)