Skip to content

Commit 991a31e

Browse files
committed
fix container string
1 parent 7c5d064 commit 991a31e

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

documentation/modules/ROOT/pages/setup.adoc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ NOTE: * You can also use Docker instead of Podman. The advantage of Podman is th
3333

3434
[tabs]
3535
====
36-
Local Installation (read the tip below for an alternative way to install these tools)::
36+
Local Installation::
3737
+
3838
--
3939
Please have them installed and configured before you get started with any of the tutorial chapters.
@@ -92,13 +92,12 @@ mkdir quarkus-tutorial
9292
cd quarkus-tutorial
9393
mkdir work
9494
docker run -ti -p 8080:8080 -v `pwd`/work:/work \
95-
-v `./mvnw help:evaluate -Dexpression=settings.localRepository | grep \
96-
-v '\[INFO\]' | grep -v '\[WARNING\]'`:/opt/developer/.m2/repository \
95+
-v `mvn help:evaluate -Dexpression=settings.localRepository -q -DforceStdout`:/opt/developer/.m2/repository \
9796
--rm quay.io/rhdevelopers/tutorial-tools:0.0.7 bash
9897
9998
# -p will map Quarkus running in the container to your host port
10099
# -v `pwd`... will map the host work subdirectory to the container /work directory, this is where you will create your application
101-
# -v `./mvnw ...` will map your ~/.m2/repository of your host to the container repository to save downloading again between image runs
100+
# -v `mvn ...` will map your ~/.m2/repository of your host to the container repository to save downloading again between image runs
102101
-----
103102
104103
[TIP]

0 commit comments

Comments
 (0)