Make mounted HOME directory writable from inside the VM

Signed-off-by: Jan Dubois <jan.dubois@suse.com>
This commit is contained in:
Jan Dubois
2021-10-08 11:05:36 -07:00
parent d6815f1142
commit 5ffc70131d

View File

@@ -421,7 +421,7 @@ export default class LimaBackend extends events.EventEmitter implements K8s.Kube
memory: (this.cfg?.memoryInGB || 4) * 1024 * 1024 * 1024,
mounts: [
{ location: path.join(paths.cache, 'k3s'), writable: false },
{ location: '~', writable: false },
{ location: '~', writable: true },
{ location: '/tmp/rancher-desktop', writable: true },
],
ssh: { localPort: await this.sshPort },