We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 61edae4 + 5336193 commit e4f8d1eCopy full SHA for e4f8d1e
core/runtime/src/main/java/io/quarkus/runtime/util/ContainerRuntimeUtil.java
@@ -194,7 +194,8 @@ private static boolean getRootlessStateFor(ContainerRuntime containerRuntime) {
194
// We also treat Docker Desktop as "rootless" since the way it binds mounts does not
195
// transparently map the host user ID and GID
196
// see https://docs.docker.com/desktop/faqs/linuxfaqs/#how-do-i-enable-file-sharing
197
- stringPredicate = line -> line.trim().equals("rootless") || line.contains("desktop-linux");
+ stringPredicate = line -> line.trim().equals("rootless") || line.contains("Docker Desktop")
198
+ || line.contains("desktop-linux");
199
} else {
200
stringPredicate = line -> line.trim().equals("rootless: true");
201
}
0 commit comments