File tree Expand file tree Collapse file tree
documentation/modules/ROOT/pages Expand file tree Collapse file tree Original file line number Diff line number Diff 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--
3939Please have them installed and configured before you get started with any of the tutorial chapters.
@@ -92,13 +92,12 @@ mkdir quarkus-tutorial
9292cd quarkus-tutorial
9393mkdir work
9494docker 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]
You can’t perform that action at this time.
0 commit comments