Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In docker, writing file to mounted file-system as non-root?

Tags:

docker

I have a docker container with a -v /home/dan:/home/dan:rw. When the container writes files to /home/dan, the files are owned by root in the host filesystem. Is there a way to make it so that files written from the container to the mounted volume are owned by some arbitrary user on the host filesystem?

like image 512
zsimpson Avatar asked Jan 02 '14 23:01

zsimpson


People also ask

How do you give a non-root user in Docker container access to a volume mounted on the host?

RUN useradd --create-home appuser USER appuser RUN mkdir /home/appuser/my_volume ... Now appuser has write permissions to the volume as it's in their home directory.

Does Docker have to run as root?

Manage Docker as a non-root userThe Docker daemon always runs as the root user. If you don't want to preface the docker command with sudo , create a Unix group called docker and add users to it.

Do containers run as root by default?

Installing software is something only the root user can do. So container build systems set you up, by default, with the root user. Unless you explicitly add a non-privileged user, the containerized software will continue to be set to keep running as root.


Video Answer


4 Answers

As François Zaninotto has pointed out, the user id can be used.

This can be done by using the -u switch for the docker run command.

For example:

docker run -v /home/dan:/home/dan -u `id -u $USER` IMAGE
like image 195
mandark Avatar answered Oct 22 '22 05:10

mandark


EDIT: this has changed since my original answer which said it couldn't be done. As per answer of Mandark:

This can be done by using the -u switch for the docker run command.

For example:

docker run -v /home/dan:/home/dan -u `id -u $USER` IMAGE
like image 22
qkrijger Avatar answered Oct 22 '22 05:10

qkrijger


A follow up to mandark answer - I would say it's also good to include the user group otherwise you will end up with stuff belonging to user: USER and group: root. To achive user:user just pass in group id as well, for example:

docker run -v /home/dan:/home/dan -u `id -u $USER`:`id -g $USER` IMAGE

# if it's for the current user, then you can omit the $USER env var

docker run -v /home/dan:/home/dan -u `id -u`:`id -g` IMAGE
like image 15
Leszek Zalewski Avatar answered Oct 22 '22 06:10

Leszek Zalewski


It's possible. It's hard to automate, but it's possible. Here is the process:

  1. in the host, determine the current user id and group id
  2. in the docker container, run a shell script to:

    • add a new group with the group id from the host
    • add a new user with the same user id from the host (and belonging to the group just created)
    • sudo as this new user

Now, each file generated inside the container will be using the right user id and group id, and the host will attach them to your user.

I've written a tool to automate that using make, it's called make-docker-command. Hope this helps.

like image 3
François Zaninotto Avatar answered Oct 22 '22 06:10

François Zaninotto