diff --git a/src/volumes.js b/src/volumes.js index 66436ef96..4f44d490d 100644 --- a/src/volumes.js +++ b/src/volumes.js @@ -213,8 +213,8 @@ async function mountAll() { debug('mountAll: mouting all volumes'); for (const volume of await list()) { + if (volume.mountType === mounts.MOUNT_TYPE_MOUNTPOINT || volume.mountType === mounts.MOUNT_TYPE_FILESYSTEM) continue; const mount = { description: volume.name, ...volume }; await mounts.tryAddMount(mount, { timeout: 10, skipCleanup: true }); // have to wait to avoid race with apptask } } -