volschin / containers

My collection of container images

Home Page:https://github.com/volschin?tab=packages&repo_name=containers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 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/onedr0p/sonarr:rolling
ghcr.io/onedr0p/sonarr:3.0.8.1507
ghcr.io/onedr0p/sonarr:rolling@sha256:8053...
ghcr.io/onedr0p/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.

Rootless

To run these containers as non-root make sure you update your configuration to the user and group you want.

Docker compose

networks:
  sonarr:
    name: sonarr
    external: true
services:
  sonarr:
    image: ghcr.io/onedr0p/sonarr:3.0.8.1507
    container_name: sonarr
    user: 65534:65534
    # ...

Kubernetes

apiVersion: apps/v1
kind: Deployment
metadata:
  name: sonarr
# ...
spec:
  # ...
  template:
    # ...
    spec:
      # ...
      securityContext:
        runAsUser: 65534
        runAsGroup: 65534
        fsGroup: 65534
        fsGroupChangePolicy: OnRootMismatch
# ...

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

Container Channel Image Latest Tags
actions-runner stable ghcr.io/volschin/actions-runner 2 2.319 2.319.1 rolling
bazarr stable ghcr.io/volschin/bazarr 1 1.4 1.4.3 rolling
calibre-web stable ghcr.io/volschin/calibre-web 0 0.6 0.6.23 rolling
home-assistant stable ghcr.io/volschin/home-assistant 2024.8.3 rolling
jbops stable ghcr.io/volschin/jbops 1 1.0 1.0.893 rolling
lidarr master ghcr.io/volschin/lidarr 2 2.5 2.5.3 2.5.3.4341 rolling
lidarr-develop develop ghcr.io/volschin/lidarr-develop 2 2.5 2.5.3 2.5.3.4341 rolling
par2cmdline-turbo stable ghcr.io/volschin/par2cmdline-turbo 1.1.1 rolling
postgres-init stable ghcr.io/volschin/postgres-init 16 16.3 rolling
prowlarr master ghcr.io/volschin/prowlarr 1 1.23 1.23.1 1.23.1.4708 rolling
prowlarr-develop develop ghcr.io/volschin/prowlarr-develop 1 1.23 1.23.1 1.23.1.4708 rolling
qbittorrent stable ghcr.io/volschin/qbittorrent 4 4.6 4.6.6 rolling
qbittorrent-beta beta ghcr.io/volschin/qbittorrent-beta 4 4.6 4.6.6 rolling
radarr master ghcr.io/volschin/radarr 5 5.9 5.9.1 5.9.1.9070 rolling
radarr-develop develop ghcr.io/volschin/radarr-develop 5 5.10 5.10.1 5.10.1.9125 rolling
readarr-develop develop ghcr.io/volschin/readarr-develop 0 0.3 0.3.32 0.3.32.2587 rolling
readarr-nightly nightly ghcr.io/volschin/readarr-nightly 0 0.4 0.4.0 0.4.0.2593 rolling
sabnzbd stable ghcr.io/volschin/sabnzbd 4 4.3 4.3.3 rolling
sonarr main ghcr.io/volschin/sonarr 4 4.0 4.0.9 4.0.9.2244 rolling
sonarr-develop develop ghcr.io/volschin/sonarr-develop 4 4.0 4.0.9 4.0.9.2342 rolling
theme-park stable ghcr.io/volschin/theme-park 1 1.17 1.17.0 rolling
volsync stable ghcr.io/volschin/volsync 0 0.10 0.10.0 rolling
whisparr-nightly nightly ghcr.io/volschin/whisparr-nightly 2 2.0 2.0.0 2.0.0.548 rolling

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.

About

My collection of container images

https://github.com/volschin?tab=packages&repo_name=containers

License:Apache License 2.0


Languages

Language:Dockerfile 66.2%Language:Shell 29.7%Language:Python 3.0%Language:CUE 1.0%