I have my Dockerfile setup for dbt-snowflake/dbt-core with all its prerequisites. I also created a group for that docker image and added some users to that group while writing a docker file.
Incase, if some user want to get added to the image and run their own container, is it possible to do it? Instead of editing a dockerfile by adding a user and build it again.
I tried searching for "docker run [options]" command to pass the user name to the image while running up a container and it did not work for me.
Also tried to get commands for rebuilding the same image with adding a new user.
The command i use to run a container for the user already created while building an image.
docker run -itd -p portnumber:portnumber --user --mount --name
Can I use any command to create a user and add them to the existing group in that image?????