Skip to content

Commit 3219753

Browse files
author
Mathias Reichardt
committed
Fix readme since docker command did not work anymore
1 parent 2173f43 commit 3219753

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

Gemfile.lock

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ GEM
1414
eventmachine (1.2.7)
1515
ffi (1.17.1-arm64-darwin)
1616
ffi (1.17.1-x86_64-linux-gnu)
17+
ffi (1.17.1-x86_64-linux-musl)
1718
forwardable-extended (2.6.0)
1819
google-protobuf (4.29.3-arm64-darwin)
1920
bigdecimal
@@ -76,9 +77,10 @@ GEM
7677
rexml (3.4.2)
7778
rouge (4.5.1)
7879
safe_yaml (1.0.5)
79-
sass-embedded (1.83.4-arm64-darwin)
80+
sass-embedded (1.83.4)
8081
google-protobuf (~> 4.29)
81-
sass-embedded (1.83.4-x86_64-linux-gnu)
82+
rake (>= 13)
83+
sass-embedded (1.83.4-arm64-darwin)
8284
google-protobuf (~> 4.29)
8385
terminal-table (3.0.2)
8486
unicode-display_width (>= 1.1.1, < 3)
@@ -88,6 +90,7 @@ GEM
8890
PLATFORMS
8991
arm64-darwin
9092
x86_64-linux-gnu
93+
x86_64-linux-musl
9194

9295
DEPENDENCIES
9396
jekyll (~> 4.4.1)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
**Deployed here [https://restyard.github.io/RESTyard-Docs/](https://restyard.github.io/RESTyard-Docs/)**
44

5-
RUN build: `docker run --rm --volume="${PWD}:/srv/jekyll:Z" -it jekyll/jekyll:latest /bin/bash -c "bundle install && bundle exec jekyll"`
6-
Preview: show with `http_server` in _site folder (node tool)
5+
RUN build: `docker run --rm --volume="${PWD}:/srv/jekyll:Z" -w /srv/jekyll -it ruby:3.3-slim /bin/bash -c "apt-get update && apt-get install -y build-essential && bundle install && bundle exec jekyll build"`
6+
Preview: `docker run --rm --volume="${PWD}:/srv/jekyll:Z" -w /srv/jekyll -p 4000:4000 -it ruby:3.3-slim /bin/bash -c "apt-get update && apt-get install -y build-essential && bundle install && bundle exec jekyll serve --host 0.0.0.0 --livereload"`
77

88
This is a *bare-minimum* template to create a [Jekyll] site that:
99

0 commit comments

Comments
 (0)