Skip to content

Commit 7c884a0

Browse files
committed
Update deps; add update task
1 parent c9c9de8 commit 7c884a0

File tree

4 files changed

+16
-17
lines changed

4 files changed

+16
-17
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM openjdk:8-jre-alpine
22

3-
ARG PLANTUML_VERSION=1.2021.11
3+
ARG PLANTUML_VERSION=1.2021.14
44
ARG PLANTUML_DIR=/opt/plantuml
55
ARG PLANTUML_BIN=/usr/local/bin/plantuml
66
ARG PLANTUML_URL=https://sourceforge.net/projects/plantuml/files/plantuml.${PLANTUML_VERSION}.jar/download

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MM-DOCS
22

3-
[![](https://img.shields.io/docker/v/majkinetor/mm-docs/0.7.2?label=mm-docs)](https://hub.docker.com/r/majkinetor/mm-docs) ![](https://img.shields.io/docker/pulls/majkinetor/mm-docs)      [TEMPLATE](https://github.com/majkinetor/mm-docs-template)
3+
[![](https://img.shields.io/docker/v/majkinetor/mm-docs/0.7.3?label=mm-docs)](https://hub.docker.com/r/majkinetor/mm-docs) ![](https://img.shields.io/docker/pulls/majkinetor/mm-docs)      [TEMPLATE](https://github.com/majkinetor/mm-docs-template)
44

55
This is a docker image that setups and runs documentation system designed for all types of project documentation and can be used in cross-platform manner. This repository is not used directly when writing documentation and its purpose is to improve the mm-docs itself.
66

@@ -33,9 +33,9 @@ Command line tool to check for broken links
3333

3434
Run `Invoke-Build ?` to get the list of available tasks. Most important ones are given bellow.
3535

36-
| Command | Description |
37-
| ---------------------------------------- | ---------------------------------------------- |
38-
| `ib Build` | Build docker image |
39-
| `ib Build, GetVersions -aLatestModules ` | Build docker image with all components updated |
36+
| Command | Description |
37+
| ----------- | ---------------------------------------------- |
38+
| `ib Build` | Build docker image |
39+
| `ib Update` | Build docker image with all components updated |
4040

4141
where `ib` is alias to Invoke-Build.

mm-docs.build.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ task Build {
4040
exec { docker $params }
4141
}
4242

43+
# Synopsis: Update docker image with latest dependencies
44+
task Update { $script:aLatestModules = $true }, Build, GetVersions
45+
4346
# Synopsis: Run interactive session
4447
task RunShell { docker run -it --rm $ImageFullName sh }
4548

requirements.txt

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
mkdocs==1.2.2
2-
mkdocs-material==7.3.1
3-
plantuml-markdown==3.4.3
1+
mkdocs==1.2.3
2+
mkdocs-material==8.0.2
3+
plantuml-markdown==3.5.0
44

55
markdown-include==0.6.0
66
mkdocs-exclude==1.0.2
7-
mkdocs-macros-plugin==0.6.0
7+
mkdocs-macros-plugin==0.6.3
88

9-
10-
mkdocs-pdf-export-plugin==0.5.9
11-
mkdocs-print-site-plugin==2.0.1
12-
13-
14-
15-
9+
mkdocs-pdf-export-plugin==0.5.10
10+
mkdocs-print-site-plugin==2.0.3
11+

0 commit comments

Comments
 (0)