diff --git a/src/docker.js b/src/docker.js index ea8d2cfea..adb54220d 100644 --- a/src/docker.js +++ b/src/docker.js @@ -317,7 +317,9 @@ async function createSubcontainer(app, name, cmd, options) { const addonEnv = await services.getEnvironment(app); const runtimeVolumes = { '/tmp': {}, - '/run': {} + '/run': {}, + '/home/cloudron/.cache': {}, + '/root/.cache': {} }; if (app.manifest.runtimeDirs) { app.manifest.runtimeDirs.forEach(dir => runtimeVolumes[dir] = {});