I am facing a issue related to Docker users.
I run my container as gitlab-runner
using the following command:
docker run --name testes_cashlink --hostname testes_cashlink --user gitlab-runner --privileged -t -v $DIR_TESTES:/cashlink_host -v $DIR_BATS:/bats -v $DIR_PROJETO:/cashlink_war docker-cashlink-ci /bats/run.sh
The files created inside the docker container show owner gitlab-runner
, however, the same files show in my host machine as owner roggerfernandes
. gitlab-runner
must be the owner of files created inside Docker container as well as host machine.
Filesystems, at least in Unix- and Linux-like systems (including macOS), file owners are a number, not a name. Various tools such as
ls
will translate the number into a name for convenience, but it is still just a number. Your usergitlab-runner
in the container, and the userroggerfernandes
on the host system, have the same UID. You can find the numeric ID by running theid
command.Here it is on my laptop (reformatted a bit for readability):
Here you see at the beginning my UID is 501.
You can also run this command with a username, e.g.
id gitlab-runner
inside the container.So when the user in the container owns a file, it is stored as a numeric ID (quite likely 1000, a common default). When you look on your host system, the mechanism that translates the number into a username just has a different username in its result than you would see inside the container.
If you need a specific user ID inside the container, you need to modify your Dockerfile so that when creating the user, you specify its uid. For example: