Sign inSign up

cliwrap/xenial

By cliwrap

Updated over 5 years ago

Ubuntu 16.04 xenial set up to mount a local directory and run commands as the (non root) host UID

Image
0

457

cliwrap/xenial repository overview

Build
Status

The Dockerfile in this repository builds a ubuntu:16.04 container (with apt-get update and apt-get upgrade run) which lets you run commands inside the container using a UID and GID which are passed in environment variables from outside the container, so that any files created in a volume mount can be created as the user and group who initiated docker run.

Read more at https://wtanaka.com/node/8271

To download: docker pull cliwrap/xenial

Examples

Create a file called myfile in the current directory

docker run --rm -e "HOSTUID=`id -u`" -v "`pwd`:/work" cliwrap/xenial touch myfile

Create a file with the correct uid and gid in the current directory

docker run --rm -e "HOSTUID=`id -u`" -e "HOSTGID=`id -g`" -v "`pwd`:/work" cliwrap/xenial touch myfile

Tag summary

Content type

Image

Digest

Size

42.2 MB

Last updated

over 5 years ago

docker pull cliwrap/xenial