Code-server: Installation Issue: Docker version wont run!

Created on 2 Jan 2020  路  3Comments  路  Source: cdr/code-server

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?

Most helpful comment

$ chown 1000:1000 -R ${HOME}/.local/share/code-server

Try it.

All 3 comments

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!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

pchecinski picture pchecinski  路  3Comments

korzq picture korzq  路  3Comments

grant picture grant  路  3Comments

nol166 picture nol166  路  3Comments

tecosaur picture tecosaur  路  3Comments