Run as current user mode
On Linux, by default, the Docker daemon runs as root
, and so all containers run as root
. This means that when a container writes a file to a mounted directory,
it is owned by the root
Unix user, making it difficult for other users to modify or delete the files. In particular, when a task writes a file to a mounted directory,
the artefact would be written as root
.
(On macOS and Windows, the Docker daemon runs as the currently logged-in user and so any files created in mounted volumes are owned by that user, so this is not an issue.)
To fix this issue, Batect can run containers in run as current user mode, ensuring that all files written to a
mounted volume are created by the current user, not root
.
This mode can be enabled on a per-container basis with the run_as_current_user
option, for example:
containers:
my-container:
# ... other configuration for container
run_as_current_user:
enabled: true
home_directory: /home/container-user
Changes made when running in run as current user mode
When run as current user mode is enabled, the following configuration changes are made:
The container is run with the current user's UID and GID (equivalent to passing
--user $(id -u):$(id -g)
todocker run
)An empty directory is created inside the container at
home_directory
for the user's home directory.dangerIf the directory given by
home_directory
already exists inside the image for this container, it is retained but has its owner and group modified.New
/etc/passwd
and/etc/shadow
files are mounted into the container with two users:root
and the current user. The current user's home directory is set to the value ofhome_directory
. (If Batect is running asroot
, then justroot
is listed and it takes the home directory provided inhome_directory
.)This means that any other users defined in the container's image are effectively lost. Under most circumstances, this is not an issue.
Similarly, a new
/etc/group
file is copied into the container with two groups:root
and the current user's primary group (usuallystaff
on macOS, and the user's name on Linux). If Batect is running asroot
, then justroot
is listed.Again, this means that any other groups defined in the container's image are effectively lost. Under most circumstances, this is not an issue.
While run as current user mode is really only useful on Linux, for consistency, Batect makes the same configuration changes regardless of the host operating system. These configuration changes are harmless on macOS and Windows.
Special notes for Windows
On Windows, the container is run with UID 0 and GID 0 and the user and group name root
. This is because any mounted directories
are always owned by root
when running on Windows, and so running as another user can cause issues interacting with mounted directories.
For consistency, root
's home directory inside the container is set to match the directory specified by home_directory
.
See docker/for-win#63 and docker/for-win#39 for more details on this limitation.
Run as current user mode is not applicable for Windows containers.