Docker: Drop the default /opt and /data mounts

They were helpful for my local setup but arbitrary and in some
cases detrimental in the general case.

Task-number: QTCREATORBUG-25981
Change-Id: I65636a9ba8340357f7c83990703fe6e74b2afed4
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
hjk
2021-07-09 13:45:19 +02:00
parent e895a0380b
commit 3f06ca7cbb

View File

@@ -44,7 +44,7 @@ public:
QString tag; QString tag;
QString size; QString size;
bool useLocalUidGid = true; bool useLocalUidGid = true;
QStringList mounts = {"/opt", "/data"}; QStringList mounts;
}; };
class DockerDevice : public ProjectExplorer::IDevice class DockerDevice : public ProjectExplorer::IDevice