Skip to content

skyssolutions/containers

Repository files navigation

Containers

An opinionated collection of container images

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

Welcome to my 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.

It also adheres to a KISS principle, logging to stdout, one process per container, no s6-overlay and most images are built on top of Alpine,Ubuntu or Debian.

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/skyssolutions/sonarr:rolling
ghcr.io/skyssolutions/sonarr:3.0.8.1507
ghcr.io/skyssolutions/sonarr:rolling@sha256:8053...
ghcr.io/skyssolutions/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 extra arguments in the args section like below.

    args:
      - --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 rolling tag, along with tags specific to it's version. Available Images Below

Container Channel Image Mirror
bind9 nat64 registry.skysolutions.fi/library/bind9 ghcr.io/skyssolutions/bind9
caddy-cf stable registry.skysolutions.fi/library/caddy-cf ghcr.io/skyssolutions/caddy-cf
cni-plugins stable registry.skysolutions.fi/library/cni-plugins ghcr.io/skyssolutions/cni-plugins
echoip latest registry.skysolutions.fi/library/echoip ghcr.io/skyssolutions/echoip
mergerfs latest registry.skysolutions.fi/library/mergerfs ghcr.io/skyssolutions/mergerfs
mongo-without-avx-5.0.18 5.0.18 registry.skysolutions.fi/library/mongo-without-avx-5.0.18 ghcr.io/skyssolutions/mongo-without-avx-5.0.18
mongo-without-avx-6.3.2 6.3.2 registry.skysolutions.fi/library/mongo-without-avx-6.3.2 ghcr.io/skyssolutions/mongo-without-avx-6.3.2
paisa latest registry.skysolutions.fi/library/paisa ghcr.io/skyssolutions/paisa
tvheadend stable registry.skysolutions.fi/library/tvheadend ghcr.io/skyssolutions/tvheadend
unpackerr stable registry.skysolutions.fi/library/unpackerr ghcr.io/skyssolutions/unpackerr
warp-sock5 latest registry.skysolutions.fi/library/warp-sock5 ghcr.io/skyssolutions/warp-sock5

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, linuxserver.io and onedr0p's container repo contributors.