jekyll-theme-isabelline 0.1.20 → 0.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/build/Dockerfile +17 -0
- data/build/Dockerfile-serve +8 -0
- data/build/docker-entrypoint.sh +19 -0
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7fbcb35eae9031bcf4277856f409768a004b04d021da36ca1c0bece35b120e7
|
4
|
+
data.tar.gz: 1fa0cad1f31dc913b4926eac4ebb065bffd9d360c2c130106ad9e36b7b20e0da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c818a615a1e17472a0dbcf7ac65fc698dc92ce86cafd1b5b5ed409a838493c9003850f4bff27f71ca65d8c5e9f7e6862b7277d775f5e4c42c66fb9372886fc03
|
7
|
+
data.tar.gz: 85c8bb13c14aba6acf0dc79a808eac0a2bbe9aa8e10bd6a9fc48a9410dbe4bb7947f48b33b28cbf2b1eff54aee358ee130bca1ebb58667654ad6c65ddbcf9e13
|
data/build/Dockerfile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# borrowed from https://github.com/BretFisher/jekyll-serve
|
2
|
+
|
3
|
+
FROM ruby:2.7-alpine
|
4
|
+
|
5
|
+
RUN apk add --no-cache build-base gcc bash cmake git
|
6
|
+
RUN apk add --no-cache imagemagick
|
7
|
+
|
8
|
+
# install both bundler 1.x and 2.x
|
9
|
+
RUN gem install bundler -v "~>1.0" && gem install bundler jekyll
|
10
|
+
|
11
|
+
EXPOSE 4000
|
12
|
+
|
13
|
+
WORKDIR /site
|
14
|
+
|
15
|
+
ENTRYPOINT [ "jekyll" ]
|
16
|
+
|
17
|
+
CMD [ "--help" ]
|
@@ -0,0 +1,8 @@
|
|
1
|
+
FROM docker.rzen.dev/jekyll:latest
|
2
|
+
|
3
|
+
COPY docker-entrypoint.sh /usr/local/bin/
|
4
|
+
|
5
|
+
# on every container start, check if Gemfile exists and warn if it's missing
|
6
|
+
ENTRYPOINT [ "docker-entrypoint.sh" ]
|
7
|
+
|
8
|
+
CMD [ "bundle", "exec", "jekyll", "serve", "--force_polling", "-H", "0.0.0.0", "-P", "4000" ]
|
@@ -0,0 +1,19 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
set -e
|
3
|
+
|
4
|
+
if [ ! -f Gemfile ]; then
|
5
|
+
echo "NOTE: hmm, I don't see a Gemfile so I don't think there's a jekyll site here"
|
6
|
+
echo "Either you didn't mount a volume, or you mounted it incorrectly."
|
7
|
+
echo "Be sure you're in your jekyll site root and use something like this to launch"
|
8
|
+
echo ""
|
9
|
+
echo "docker run -p 80:4000 -v \$(pwd):/site bretfisher/jekyll-serve"
|
10
|
+
echo ""
|
11
|
+
echo "NOTE: To create a new site, you can use the sister image bretfisher/jekyll like:"
|
12
|
+
echo ""
|
13
|
+
echo "docker run -v \$(pwd):/site bretfisher/jekyll new ."
|
14
|
+
exit 1
|
15
|
+
fi
|
16
|
+
|
17
|
+
bundle install --retry 5 --jobs 20
|
18
|
+
|
19
|
+
exec "$@"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-isabelline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.21
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rouslan Zenetl
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-09-
|
11
|
+
date: 2020-09-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -115,6 +115,9 @@ files:
|
|
115
115
|
- assets/js/clipboard.js
|
116
116
|
- assets/js/slides.js
|
117
117
|
- assets/js/snackbar.js
|
118
|
+
- build/Dockerfile
|
119
|
+
- build/Dockerfile-serve
|
120
|
+
- build/docker-entrypoint.sh
|
118
121
|
- index.html
|
119
122
|
homepage: https://github.com/rzen/jekyll-theme-isabelline
|
120
123
|
licenses:
|
@@ -136,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
139
|
- !ruby/object:Gem::Version
|
137
140
|
version: '0'
|
138
141
|
requirements: []
|
139
|
-
rubygems_version: 3.
|
142
|
+
rubygems_version: 3.0.6
|
140
143
|
signing_key:
|
141
144
|
specification_version: 4
|
142
145
|
summary: Simple clean mobile-friendly theme for long form note taking. Works for blogging
|