Skip to content

Commit 9ccf2e4

Browse files
committed
updated version to 1.4.0
1 parent f6e7236 commit 9ccf2e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ create a bash script within the root of your project like this one:
1010
doctoolchain.sh
1111
```bash
1212
#!/usr/bin/env bash
13-
docker run --rm -it --entrypoint /bin/bash -v ${PWD}:/project rdmueller/doctoolchain:rc-1.2.0 \
13+
docker run --rm -it --entrypoint /bin/bash -v ${PWD}:/project rdmueller/doctoolchain:rc-1.4.0 \
1414
-c "doctoolchain . $1 $2 $3 $4 $5 $6 $7 $8 $9 -PinputPath=src/main/asciidoc -PmainConfigFile=config/docToolchain.groovy && exit"
1515
```
1616

@@ -27,7 +27,7 @@ With this script, you use docToolchain on your project like this:
2727
on windows, the following batch script does the same:
2828

2929
```
30-
docker run --rm --entrypoint /bin/bash -it -v %cd%:/project rdmueller/doctoolchain:rc-1.2.0 -c "doctoolchain . %1 %2 %3 %4 %5 %6 %7 %8 %9 -PinputPath=src/main/asciidoc -PmainConfigFile=config/docToolchain.groovy && exit"
30+
docker run --rm --entrypoint /bin/bash -it -v %cd%:/project rdmueller/doctoolchain:rc-1.4.0 -c "doctoolchain . %1 %2 %3 %4 %5 %6 %7 %8 %9 -PinputPath=src/main/asciidoc -PmainConfigFile=config/docToolchain.groovy && exit"
3131
```
3232

3333
## Development / Deployment

alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN echo "Install java, groovy" && \
3636

3737
RUN git clone --depth 1 https://github.com/docToolchain/docToolchain.git && \
3838
cd docToolchain && \
39-
git checkout v1.3.1 && \
39+
git checkout v1.4.0 && \
4040
git submodule update -i && \
4141
# remove .git folders
4242
rm -rf `find -type d -name .git` && \

0 commit comments

Comments
 (0)