Hey All,
I tried to add the container but i get the error
error EACCES: permission denied, mkdir '/home/coder/.local/share/code-server/extensions'
Any Ideas?
In my case, I solved this error as follows:
$ cd ~/
$ sudo mkdir .local/share/code-server/extensions
It assumes that docker mount directory as ${HOME}/.local/share/code-server:/home/coder/.local/share/code-server.
However, this is workaround. Fix commit like #1191 is needed for fundamental resolution.
$ chown 1000:1000 -R ${HOME}/.local/share/code-server
Try it.
@bruce9399 Thank you that fixed it!
Most helpful comment
$ chown 1000:1000 -R ${HOME}/.local/share/code-server
Try it.