[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 4/4] automation: ensure created are not owned as root
By default the container runs as the root user and since the source tree is bind mounted into the container, any file is created and owned by the root user which harms ergonomics when working outside of the container environment. This maps the root user within the container to the uid of the user outside of the container so files are not owned by root. Signed-off-by: Doug Goldstein <cardoe@xxxxxxxxxx> --- automation/scripts/containerize | 1 + 1 file changed, 1 insertion(+) diff --git a/automation/scripts/containerize b/automation/scripts/containerize index d17f5ff..7d297d7 100755 --- a/automation/scripts/containerize +++ b/automation/scripts/containerize @@ -71,6 +71,7 @@ fi # Kick off Docker einfo "*** Launching container ..." exec docker run \ + -u $(id -u) \ ${SSH_AUTH_SOCK:+-e SSH_AUTH_SOCK="/tmp/ssh-agent/${SSH_AUTH_NAME}"} \ -v "${CONTAINER_PATH}":/build:rw \ -v "${HOME}/.ssh":/root/.ssh:ro \ -- git-series 0.9.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |