Skip to content

Commit

Permalink
v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmueller committed Mar 5, 2023
1 parent 1d79e3b commit df6723e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/azure-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
workflow_dispatch: {}

env:
DTC_VERSION: v2.2.0
DTC_VERSION: v2.2.1

jobs:
docker:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jenkins-ssh-agent-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
workflow_dispatch: {}

env:
DTC_VERSION: v2.2.0
DTC_VERSION: v2.2.1

jobs:
docker:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standard-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
workflow_dispatch: {}

env:
DTC_VERSION: v2.2.0
DTC_VERSION: v2.2.1

jobs:
docker:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standard-with-pandoc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
workflow_dispatch: {}

env:
DTC_VERSION: v2.2.0
DTC_VERSION: v2.2.1

jobs:
docker:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down Expand Up @@ -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"
```

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion azure-devops-pipeline/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit df6723e

Please sign in to comment.