Sign inSign up

rubensa/ubuntu-dev

By rubensa

Updated almost 7 years ago

Ubuntu image for local development

Image
0

256

rubensa/ubuntu-dev repository overview

WARNING: This image is obsolete and has been superseded by rubensa/ubuntu-tini-dev.

Ubuntu image for local development

This image provides an Ubuntu environment useful for local development purposes. The internal user (developer) has sudo and the image includes fixuid so you can set internal user (developer) UID and internal group (developers) GUID to your current UID and GUID by providing that info means of "-u" docker running option.

Running

You can interactively run the container by mapping current user UID:GUID and working directory.

docker run --rm -it \
	--name "ubuntu-dev" \
	-v $(pwd):/home/developer/work \
	-w /home/developer/work \
	-u $(id -u $USERNAME):$(id -g $USERNAME) \
	rubensa/ubuntu-dev

This way, any file created in the container initial working directory is written and owned by current host user:group launching the container

Tag summary

Content type

Image

Digest

Size

86.4 MB

Last updated

almost 7 years ago

docker pull rubensa/ubuntu-dev