We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9161b07 commit ba99497Copy full SHA for ba99497
test-framework/common/src/main/java/io/quarkus/test/common/DefaultDockerContainerLauncher.java
@@ -118,7 +118,9 @@ public void start() throws IOException {
118
args.add("-i"); // Interactive, write logs to stdout
119
args.add("--rm");
120
121
- args.addAll(NativeImageBuildLocalContainerRunner.getVolumeAccessArguments(containerRuntime));
+ if (!volumeMounts.isEmpty()) {
122
+ args.addAll(NativeImageBuildLocalContainerRunner.getVolumeAccessArguments(containerRuntime));
123
+ }
124
125
args.add("-p");
126
args.add(httpPort + ":" + httpPort);
0 commit comments