diff --git a/src/module/runtime/app.cpp b/src/module/runtime/app.cpp index 091afdf3b..7831b7212 100644 --- a/src/module/runtime/app.cpp +++ b/src/module/runtime/app.cpp @@ -887,7 +887,9 @@ class AppPrivate } QPointer m(new Mount(r)); m->type = "bind"; - m->source = tmp.absolutePath(); + // m->source = tmp.absolutePath(); + // quickfix: mount host /tmp into container + m->source = tmpPath; m->destination = tmpPath; m->options = QStringList({ "rbind" }); r->mounts.push_back(m);