Code Monkey home page Code Monkey logo

Comments (21)

sr229 avatar sr229 commented on May 16, 2024 7

This is how I see we're teaching people bad practices. They don't know linux, and they're learning via guides. If they decide to use Linux outside of Coder they won't know the concept behind sudo and permissions. We need to let them know "hey, you might need to run this specific command first before doing that", and this adds a certain familiarity of how the concept of permissions work.

We in turn, teach them how security usually works in Linux for beginners, and we give a sense of familiarity for other users. You don't see GCP giving you away a VM with a root account because you're expected to know about sudo and the concept of Linux security by permissions.

from code-server.

sr229 avatar sr229 commented on May 16, 2024 5

I'm willing to reimplement the Dockerfile in the repo by basing off from my already existing image, should I get enough consensus that we should do usermode in this Dockerfile.

from code-server.

frol avatar frol commented on May 16, 2024 3

Docker best-practices (β€œUSER” section) describes how to do this.

As a side effect, running code-server as root will result in that the newly created files become owned by root, so soon enough user will end up with a project that cannot be modified from their regular user. To solve the permission issues, it is recommended to create a regular user and remap host UID & GID

from code-server.

incizzle avatar incizzle commented on May 16, 2024 1

I think @sr229 summed it up pretty well. I personally don't see running every command as sudo in this environment as a bad thing, but it doesn't instill good security practices & habits when this is transferred to other places.

from code-server.

incizzle avatar incizzle commented on May 16, 2024

I agree with @sr229 the container should not be launching commands as sudo all the time.

from code-server.

nhooyr avatar nhooyr commented on May 16, 2024

@incizzle appreciate the input but could you elaborate on your reasoning why?

from code-server.

NGTmeaty avatar NGTmeaty commented on May 16, 2024

I think this ^^ is the best idea at the moment. May want to wait for a code owner to give their opinions.

from code-server.

 avatar commented on May 16, 2024

The design issue here is, that you should not make any modifications to the docker container after it started up.
Being able to install some dev tools etc. in the VS Code terminal while using it is very bad practice, and as mentioned in #86, there should be a seperate container for each terminal, which has the project directory mounted into it, and also the container image of that individually spawned container should have the required build/dev tools for each language or project type.

That said, adding a USER statement to the dockerfile would break the possibility to use the terminal for anything like package installation.

from code-server.

sr229 avatar sr229 commented on May 16, 2024

@PhilsLab I don't think it should be as locked down as you need to on #86. However, I did provide a variant that does exactly that which works for OpenShift Online, but its pain to compensate for common use cases.

from code-server.

incizzle avatar incizzle commented on May 16, 2024

@PhilsLab, In order to have a separate container for each dev environment, it would require a lot of recoding of the actual VS code online program. It sounds likes its gonna be very hard to implement but it is a cool idea.

from code-server.

sr229 avatar sr229 commented on May 16, 2024

Theia did support this kind of work (Remember Eclipse Che 7?), however, this would require substantial backend re-engineering which would increase the amount of difficulty per new VSCode release since it might not be interopable with each other

from code-server.

kylecarbs avatar kylecarbs commented on May 16, 2024

You could just mount the projects and data-dir into your docker container on each start. Then you start where you were in a completely new environment.

from code-server.

sr229 avatar sr229 commented on May 16, 2024

Implementing it as per #183.

from code-server.

nhooyr avatar nhooyr commented on May 16, 2024

https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#user

Avoid installing or using sudo as it has unpredictable TTY and signal-forwarding behavior that can cause problems. If you absolutely need functionality similar to sudo, such as initializing the daemon as root but running it as non-root), consider using β€œgosu”.

This is interesting, though I'm not sure if its applicable to us or whether the advice is about RUN commands or the entrypoint.

@frol

As a side effect, running code-server as root will result in that the newly created files become owned by root, so soon enough user will end up with a project that cannot be modified from their regular user. To solve the permission issues, it is recommended to create a regular user and remap host UID & GID

This is definitely a big issue. I think this alone is enough to justify the use of a user account. We definitely do not want all files written as root but instead whatever user the dev is using.

from code-server.

nhooyr avatar nhooyr commented on May 16, 2024

Btw guys, container per terminal is being tracked at #190

from code-server.

sr229 avatar sr229 commented on May 16, 2024

@nhooyr From what I have done with user-mode containers, this might increase the image size, but I might be wrong.

from code-server.

nhooyr avatar nhooyr commented on May 16, 2024

@nhooyr From what I have done with user-mode containers, this might increase the image size, but I might be wrong.

Thats fine. Though, as I mentioned earlier, this issue has not yet been discussed by the team and we're not sure of its direction. Please keep in mind your changes may not be accepted.

Also, since we're using ENTRYPOINT we can omit the CMD stage IMHO. We should be fixing this in the program-side.

Already fixed. See #188

from code-server.

avelino avatar avelino commented on May 16, 2024

Do not like to run with root even inside the container, I think it important to have a user (ex: coder)
WIP in PR #192 by @sr229 (good job)

from code-server.

krazyito65 avatar krazyito65 commented on May 16, 2024

As an FYI: from what I've seen CentOS / Fedora based systems require Docker to be run as root.

https://www.projectatomic.io/blog/2015/08/why-we-dont-let-non-root-users-run-docker-in-centos-fedora-or-rhel/ -- is a good read

from code-server.

nhooyr avatar nhooyr commented on May 16, 2024

That is interesting but I believe orthogonal to our discussion. We're discussing whether the processes inside the container should run as root.

from code-server.

krazyito65 avatar krazyito65 commented on May 16, 2024

My bad, misunderstood.

from code-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.