Skip to content

Base image that steps down from root into a runtime-defined non-privileged user

License

Notifications You must be signed in to change notification settings

PhasecoreX/docker-user-image

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

User Entrypoint Images

A user entrypoint script (and base images) that step down from root into a runtime-defined non-privileged user

BuyMeACoffee PayPal

This repository is used as the template for building many of my user-[IMAGE] images. Currently we have the following images set up with multi-arch support:

  • alpine Build Status Docker Pulls
  • debian Build Status Docker Pulls
  • python Build Status Docker Pulls
  • ubuntu Build Status Docker Pulls

For Developers

In the past, you were forced to use one of the above 4 base images that I would keep up to date. I still do keep them up to date, but an easier thing to do would be just including the user-entrypoint script in your own image and initializing it. Simply add these 4 lines right below your main FROM baseimage (usually the first line):

# Add PhasecoreX user-entrypoint script
ADD https://raw.githubusercontent.com/PhasecoreX/docker-user-image/master/user-entrypoint.sh /bin/user-entrypoint
RUN chmod +x /bin/user-entrypoint && /bin/user-entrypoint --init
ENTRYPOINT ["/bin/user-entrypoint"]

Here are some examples of it being used:

The /bin/user-entrypoint --init will do all necessary setup in your image, in order to facilitate the following:

  • UID/GID support: A user can specify PUID (and optionally PGID) to set the UID/GID your images CMD will run as. This also will make sure certain directories have proper permissions set on them, see Directories below.
  • Timezone support: A user can specify TZ to set the containers timezone.
  • Niceness support: A user can specify NICENESS to set the containers cpu niceness.

If for some reason you want to use my images, simply have your image use this image as its base image:

FROM phasecorex/user-[IMAGE]

Replace [IMAGE] with any of the above supported image names. You can also append :[version] as you would with the regular base image, though there might be some uncommon/older tags missing. Best to just go with adding the user-entrypoint script to your own image, as shown above.

Directories

There are two directories created for your program to use:

  • /config: Useful to have your programs config files stored. The user can easily volume/bind mount this directory and modify config values.
  • /data: Useful for your program to store databases or other persistence data. Again, the user can easily volume/bind mount this directory to save persistence.

These two directories will be chowned to the UID and GID the user selected via environment variables at start. If the image detects that the owner/group has been changed since last run, a full recursive chown will be performed instead. Your program will not need to worry about any permission errors with these directories.

Custom Entrypoints

If your image utilizes an entrypoint script as well, you will need to prepend the entrypoint /bin/user-entrypoint to it for both to work together:

ENTRYPOINT ["/bin/user-entrypoint", "your", "other", "commands"]

For Users

If you're a developer using this image, consider including this information in your images readme.

UID/GID

Set the environment variable PUID as the user ID you want the container to run as. You can also set the environment variable PGID to specify the group ID. It will default to the user ID.

For example:

docker run -it -e PUID=1000 phasecorex/user-[IMAGE]
docker run -it -e PUID=1000 -e PGID=1024 phasecorex/user-[IMAGE]
docker run -it -e PUID=0 phasecorex/user-[IMAGE]

If not supplied, the default PUID and PGID will be 1000.

If set manually to 0, the process will run as root.

Timezone

You can also set a timezone that your process will run in. Simply define the TZ environment variable:

docker run -it -e TZ=America/Detroit -e PUID=1000 phasecorex/user-[IMAGE]

This helps with having correct times in process logs.

Niceness

By default, the process will run at the niceness that Docker itself is running at (usually zero). If you would like to change that, simply define the NICENESS environment variable:

docker run -it -e TZ=America/Detroit -e PUID=1000 -e NICENESS=10 phasecorex/user-[IMAGE]
docker run -it -e TZ=America/Detroit -e PUID=1000 -e NICENESS=-10 --cap-add=SYS_NICE phasecorex/user-[IMAGE]

Niceness has a range of -20 (highest priority, least nice to other processes) to 19 (lowest priority, very nice to other processes). Setting this to a value less than the default (higher priority) will require that you start the container with --cap-add=SYS_NICE. Setting it above the default will not need that capability set.

About

Base image that steps down from root into a runtime-defined non-privileged user

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages 4