You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe, if possible, to change instructions to allow this to work out of the box, on remote docker.
I followed instructions to install in remote docker server (not localhost), however, this does not work:
Thank you for bringing this to our attention. We are aware that the setup documentation is confusing and lacking at the moment. #1447#1396 should help to improve this.
The intent of the docker run quick start is to demo code-server for users on their local machine. In this case, 127.0.0.1:8080 makes sense.
Maybe, if possible, to change instructions to allow this to work out of the box, on remote docker.
I followed instructions to install in remote docker server (not localhost), however, this does not work:
docker run -it -p 127.0.0.1:8080:8080 -v "$PWD:/home/coder/project" -u "$(id -u):$(id -g)" codercom/code-server:latest
The problem is - it is not accesible at <remote_ip>:8080
I'm guessing it is this docker line that needs to be changed, if that would be the case.
However, not being that familiar with docker, I added simple nginx proxy to try it from <remote_ip>82/vs:
And now it works, although here we have another problem (non secure, copy paste does not work), but that is another issue.
The text was updated successfully, but these errors were encountered: