Coder Social home page Coder Social logo

Run as non-root about uvicorn-gunicorn-docker HOT 4 CLOSED

tiangolo avatar tiangolo commented on September 24, 2024 1
Run as non-root

from uvicorn-gunicorn-docker.

Comments (4)

Mazyod avatar Mazyod commented on September 24, 2024 4

In order to run as non-root, I faced an issue binding gunicorn to (0.0.0.0, 80), but that was resolved once I realized I just need to bind to a non-privileged port, i.e. 8080. Otherwise, it was as simple as adding a USER directive in a Dockerfile.

from uvicorn-gunicorn-docker.

tiangolo avatar tiangolo commented on September 24, 2024

Sure, you can do it if it's useful for your use case, but you have to make sure that the files in your local system belong to the correct user in your machine and then inside your container, that you have the right user inside as well, that the ownership of the files is correct, etc.

All this making sure that you use the right user ID number, if your local machine has more than one user, your user ID won't be the default one for a new user, etc.

Also, you lose the possibility to develop mounting a local volume with your code as the permissions probably won't match, or maybe you have to change them as part of your build step.

But if you are in a constrained environment or for some specific reason you want to run as another user, sure, you can do it, is just not something I can enforce or add defaults for it. For the same reasons above I can't make an assumption about the permissions and ownership of your code, nor about specific usernames, etc. Because each case that needs something similar will have different requirements, but for sure you can customize your own image to suit your needs, create the right user, set the right permissions to match your personal development environment, etc.

from uvicorn-gunicorn-docker.

github-actions avatar github-actions commented on September 24, 2024

Assuming the original issue was solved, it will be automatically closed now. But feel free to add more comments or create new issues.

from uvicorn-gunicorn-docker.

niloct avatar niloct commented on September 24, 2024

Thanks @Mazyod for the lead.

I was experiencing a major headache with my issue, that I was getting Connection refused even with 8080 port and non-root.

My issue was that my gunicorn container was attached to TWO bridge networks, one for the database link and the other for nginx.

And guess in which network gunicorn was listening..... :(

Takeaway: specify HOST option with the full machine+network host name, like: impulse_python.docker_python_web_net (in my case)

(you can get values by docker network ls then docker network inspect [XXX] and the network suffix is the first Name value listed)

from uvicorn-gunicorn-docker.

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.