Skip to content

drag0n141/containers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Containers

An opinionated collection of container images

GitHub Repo stars GitHub forks GitHub Workflow Status (with event)

Welcome to our container images, if looking for a container start by browsing the GitHub Packages page for this repo's packages.

Mission statement

The goal of this project is to support semantically versioned, rootless, and multiple architecture containers for various applications.

We also try to adhere to a KISS principle, logging to stdout, one process per container, no s6-overlay and all images are built on top of Alpine or Ubuntu.

Tag immutability

The containers built here do not use immutable tags, as least not in the more common way you have seen from linuxserver.io or Bitnami.

We do take a similar approach but instead of appending a -ls69 or -r420 prefix to the tag we instead insist on pinning to the sha256 digest of the image, while this is not as pretty it is just as functional in making the images immutable.

Container Immutable
ghcr.io/drag0n141/sonarr:latest ❌
ghcr.io/drag0n141/sonarr:3.0.8.1507 ❌
ghcr.io/drag0n141/sonarr:latest@sha256:8053... âś…
ghcr.io/drag0n141/sonarr:3.0.8.1507@sha256:8053... âś…

If pinning an image to the sha256 digest, tools like Renovate support updating the container on a digest or application version change.

Passing arguments to a application

Some applications do not support defining configuration via environment variables and instead only allow certain config to be set in the command line arguments for the app. To circumvent this, for applications that have an entrypoint.sh read below.

  1. First read the Kubernetes docs on defining command and arguments for a Container.

  2. Look up the documentation for the application and find a argument you would like to set.

  3. Set the argument in the args section, be sure to include entrypoint.sh as the first arg and any application specific arguments thereafter.

    args:
      - /entrypoint.sh
      - --port
      - "8080"

Configuration volume

For applications that need to have persistent configuration data the config volume is hardcoded to /config inside the container. This is not able to be changed in most cases.

Available Images

Each Image will be built with a latest tag, along with tags specific to it's version. Available Images Below

Container Channel Image Latest Tags
autoscan stable ghcr.io/drag0n141/autoscan 1 1.4 1.4.0 latest
cni-plugins stable ghcr.io/drag0n141/cni-plugins 1 1.5 1.5.0 latest
getmail stable ghcr.io/drag0n141/getmail
home-assistant stable ghcr.io/drag0n141/home-assistant 2024.5.5 latest
kms master ghcr.io/drag0n141/kms latest svn1113
kubernetes-kubectl kubectl ghcr.io/drag0n141/kubernetes-kubectl 1.30.1 latest
lidarr master ghcr.io/drag0n141/lidarr 2 2.3 2.3.3 2.3.3.4204 latest
lidarr-develop develop ghcr.io/drag0n141/lidarr-develop 2 2.3 2.3.3 2.3.3.4204 latest
lidarr-nightly nightly ghcr.io/drag0n141/lidarr-nightly 2 2.4 2.4.0 2.4.0.4211 latest
par2cmdline-turbo stable ghcr.io/drag0n141/par2cmdline-turbo 1.1.1 latest
plex stable ghcr.io/drag0n141/plex 1.40.2.8395-c67dce28e latest
plex-beta beta ghcr.io/drag0n141/plex-beta 1.40.3.8502-f4f0b17e1 latest
postgres-init stable ghcr.io/drag0n141/postgres-init 16 16.3 latest
prowlarr master ghcr.io/drag0n141/prowlarr 1 1.18 1.18.0 1.18.0.4543 latest
prowlarr-develop develop ghcr.io/drag0n141/prowlarr-develop 1 1.18 1.18.0 1.18.0.4543 latest
prowlarr-nightly nightly ghcr.io/drag0n141/prowlarr-nightly 1 1.19 1.19.0 1.19.0.4544 latest
radarr master ghcr.io/drag0n141/radarr 5 5.6 5.6.0 5.6.0.8846 latest
radarr-develop develop ghcr.io/drag0n141/radarr-develop 5 5.6 5.6.0 5.6.0.8846 latest
radarr-nightly nightly ghcr.io/drag0n141/radarr-nightly 5 5.7 5.7.0 5.7.0.8852 latest
radicale stable ghcr.io/drag0n141/radicale 3 3.2 3.2.0 latest
readarr-develop develop ghcr.io/drag0n141/readarr-develop 0 0.3 0.3.27 0.3.27.2538 latest
readarr-nightly nightly ghcr.io/drag0n141/readarr-nightly 0 0.3 0.3.28 0.3.28.2548 latest
sabnzbd stable ghcr.io/drag0n141/sabnzbd 4 4.3 4.3.2 latest
socks5 stable ghcr.io/drag0n141/socks5 1 1.4 1.4.3 latest
sonarr main ghcr.io/drag0n141/sonarr 4 4.0 4.0.5 4.0.5.1710 latest
sonarr-develop develop ghcr.io/drag0n141/sonarr-develop 4 4.0 4.0.5 4.0.5.1719 latest
theme-park stable ghcr.io/drag0n141/theme-park 1 1.16 1.16.2 latest
volsync stable ghcr.io/drag0n141/volsync 0 0.9 0.9.1 latest

Contributing

  1. Install Docker, Taskfile & Cuelang

  2. Get familiar with the structure of the repositroy

  3. Find a similar application in the apps directory

  4. Copy & Paste an application and update the directory name

  5. Update metadata.json, Dockerfile, ci/latest.sh, ci/goss.yaml and make it suit the application build

  6. Include any additional files if required

  7. Use Taskfile to build and test your image

    task APP=sonarr CHANNEL=main test

Automated tags

Here's an example of how tags are created in the GitHub workflows, be careful with metadata.json as it does affect the outcome of how the tags will be created when the application is built.

Application Channel Stable Base Generated Tag
sonarr develop false false sonarr-develop:3.0.8.1538
sonarr develop false false sonarr-develop:latest
sonarr main true false sonarr:3.0.8.1507
sonarr main true false sonarr:latest

Deprecations

Containers here can be deprecated at any point, this could be for any reason described below.

  1. The upstream application is no longer actively developed
  2. The upstream application has an official upstream container that follows closely to the mission statement described here
  3. The upstream application has been replaced with a better alternative
  4. The maintenance burden of keeping the container here is too bothersome

Note: Deprecated containers will remained published to this repo for 6 months after which they will be pruned.

Credits

A lot of inspiration and ideas are thanks to the hard work of hotio.dev and linuxserver.io contributors, and onedr0p.