From df6723e333f722dc60fce83ef8a3c8a837026d5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20D=2E=20M=C3=BCller?= Date: Sun, 5 Mar 2023 12:42:44 +0000 Subject: [PATCH] v2.2.1 --- .github/workflows/azure-build.yml | 2 +- .github/workflows/jenkins-ssh-agent-build.yml | 2 +- .github/workflows/standard-build.yml | 2 +- .github/workflows/standard-with-pandoc-build.yml | 2 +- README.md | 6 +++--- azure-devops-pipeline/Dockerfile | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/azure-build.yml b/.github/workflows/azure-build.yml index 6459f08..bea202b 100644 --- a/.github/workflows/azure-build.yml +++ b/.github/workflows/azure-build.yml @@ -11,7 +11,7 @@ on: workflow_dispatch: {} env: - DTC_VERSION: v2.2.0 + DTC_VERSION: v2.2.1 jobs: docker: diff --git a/.github/workflows/jenkins-ssh-agent-build.yml b/.github/workflows/jenkins-ssh-agent-build.yml index caa6f54..de63e3e 100644 --- a/.github/workflows/jenkins-ssh-agent-build.yml +++ b/.github/workflows/jenkins-ssh-agent-build.yml @@ -11,7 +11,7 @@ on: workflow_dispatch: {} env: - DTC_VERSION: v2.2.0 + DTC_VERSION: v2.2.1 jobs: docker: diff --git a/.github/workflows/standard-build.yml b/.github/workflows/standard-build.yml index bddb775..3050269 100644 --- a/.github/workflows/standard-build.yml +++ b/.github/workflows/standard-build.yml @@ -11,7 +11,7 @@ on: workflow_dispatch: {} env: - DTC_VERSION: v2.2.0 + DTC_VERSION: v2.2.1 jobs: docker: diff --git a/.github/workflows/standard-with-pandoc-build.yml b/.github/workflows/standard-with-pandoc-build.yml index aecdfdc..4b9930d 100644 --- a/.github/workflows/standard-with-pandoc-build.yml +++ b/.github/workflows/standard-with-pandoc-build.yml @@ -11,7 +11,7 @@ on: workflow_dispatch: {} env: - DTC_VERSION: v2.2.0 + DTC_VERSION: v2.2.1 jobs: docker: diff --git a/README.md b/README.md index b3a4a19..bfdb69a 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Align this with your personal settings/preferences. ```bash : ${DOCKERHUB_USERNAME:="doctoolchain"} -: ${DTC_VERSION:="v2.0.5"} +: ${DTC_VERSION:="v2.2.1"} # Export is not necessary as long as these variables are only used for local shell calls ``` @@ -47,7 +47,7 @@ create a bash script within the root of your project like this one: doctoolchain.sh ```bash #!/usr/bin/env bash -docker run --rm -it --entrypoint /bin/bash -v ${PWD}:/project rdmueller/doctoolchain:v2.0.5 \ +docker run --rm -it --entrypoint /bin/bash -v ${PWD}:/project doctoolchain/doctoolchain:v2.2.1 \ -c "doctoolchain . $1 $2 $3 $4 $5 $6 $7 $8 $9 -PinputPath=src/main/asciidoc -PmainConfigFile=config/docToolchain.groovy && exit" ``` @@ -64,7 +64,7 @@ With this script, you use docToolchain on your project like this: on windows, the following batch script does the same: ``` -docker run --rm --entrypoint /bin/bash -it -v %cd%:/project rdmueller/doctoolchain:v2.0.5 -c "doctoolchain . %1 %2 %3 %4 %5 %6 %7 %8 %9 -PinputPath=src/main/asciidoc -PmainConfigFile=config/docToolchain.groovy && exit" +docker run --rm --entrypoint /bin/bash -it -v %cd%:/project doctoolchain/doctoolchain:v2.2.1 -c "doctoolchain . %1 %2 %3 %4 %5 %6 %7 %8 %9 -PinputPath=src/main/asciidoc -PmainConfigFile=config/docToolchain.groovy && exit" ``` ## Development / Deployment diff --git a/azure-devops-pipeline/Dockerfile b/azure-devops-pipeline/Dockerfile index 1e8a25f..59dd555 100644 --- a/azure-devops-pipeline/Dockerfile +++ b/azure-devops-pipeline/Dockerfile @@ -1,4 +1,4 @@ -FROM doctoolchain/doctoolchain:v2.1.0 +FROM doctoolchain/doctoolchain:v2.2.1 # Azure DevOps requires root access to inject its own users/groups USER root