Git Product home page Git Product logo

Comments (1)

jescalan avatar jescalan commented on July 19, 2024

So if you are running as root, it doesn't really make much sense that you'd get a permissions error, as the root account should have permission to access anything, especially its own home directory.

I have not had much experience with docker, so I can't really give a lot of info about how docker works with respect to root accounts and permissions, but I can assure you that what's happening here is exactly what roots intends to happen. It's finding the user's home directory and placing a configuration file there.

It's likely that a lot of other node libraries don't use this functionality because they do not store global persistent configuration information. Roots does however. It keeps track of whether the user wants to disable analytics, their default template preferences, and stores any roots templates they have installed. Generally the active user's own home directory is pretty much a sure bet to be something that user will have access to (although apparently its not the case in this instance, confusingly).

There is no question that this is an issue with the container. The fact that the root user cannot access its own home dir is not normal, nor does it make any sense. This part of roots' installation is indeed not extremely common with other node libraries (although there are a number that do have it, and would encounter the same issue). But that doesn't change the fact that this is an issue with the docker container, and not with roots, which, judging by the error you posted here, is doing exactly what it was intended to do.

Let me lay out the issue as clearly as I can so it might help you with reporting it.

In node, you can run the following code to get a user's home directory, which that user should always have permission to view and modify or there are serious issues with the machine's configuration:

var os = require('os')
os.homedir()

From the command line, you can get the home directory as such:

echo $HOME

What roots does on installation is run exactly this code, then creates any nested folders that might be necessary inside the home dir. Generally, it will create $HOME/.config/roots, in order to store the global config information.

The issue here is that the user does not have permission to modify their own home directory. Now, if this is some type of strange docker limitation, you can always change the home directory by setting the $HOME variable in bash to somewhere that the user does have access to before running the roots install. Otherwise, I'd call this a bug with the container.

from roots.

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.