Skip to content

Commit

Permalink
fix(jekyll): update PlantUML version to 1.2023.4
Browse files Browse the repository at this point in the history
  • Loading branch information
evantill committed Mar 23, 2023
1 parent 85b71dd commit ec536e5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
7 changes: 5 additions & 2 deletions jekyll/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ RUN apk add --update --no-cache \
graphviz \
ttf-freefont

ARG PLANTUML_VERSION=1.2023.4
ARG PLANTUML_TAG=v1.2023.4

RUN chmod a+x /usr/local/bin/plantuml && \
wget https://github.com/plantuml/plantuml/releases/download/snapshot/plantuml-SNAPSHOT.jar && \
wget https://github.com/plantuml/plantuml/releases/download/${PLANTUML_TAG}/plantuml-pdf-${PLANTUML_VERSION}.jar && \
mkdir -p /usr/local/share/plantuml && \
mv plantuml-SNAPSHOT.jar /usr/local/share/plantuml/plantuml.jar && \
mv plantuml-pdf-${PLANTUML_VERSION}.jar /usr/local/share/plantuml/plantuml.jar && \
gem install jekyll-plantuml

CMD ["jekyll", "--help"]
Expand Down
5 changes: 3 additions & 2 deletions jekyll/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
Container base on [jekyll/jekyll](https://hub.docker.com/r/jekyll/jekyll/) container.

- JEKYLL_VERSION: 4.2.2
- PlantUML_VERSION: snapshot (20 mars 2023)
- PLANTUML_VERSION: 1.2023.4
- PLANTUML_TAG: v1.2023.4

## Usage

Expand All @@ -37,7 +38,7 @@ Container base on [jekyll/jekyll](https://hub.docker.com/r/jekyll/jekyll/) conta
version: "3.8"
services:
jekyll:
image: plantuml/jekyll:latest
image: ghcr.io/plantuml/docker/jekyll:latest
container_name: jekyll
environment:
JEKYLL_SITE_NAME: myPlantUmlBlog
Expand Down

0 comments on commit ec536e5

Please sign in to comment.