Coder Social home page Coder Social logo

e3b0c442 / containers Goto Github PK

View Code? Open in Web Editor NEW

This project forked from onedr0p/containers

0.0 1.0 0.0 1.77 MB

My collection of container images

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

License: Apache License 2.0

Shell 58.23% Python 0.94% Dockerfile 40.22% CUE 0.62%

containers's Introduction

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/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.

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/onedr0p/actions-runner 2 2.313 2.313.0 rolling
bazarr stable ghcr.io/onedr0p/bazarr 1 1.4 1.4.1 rolling
cni-plugins stable ghcr.io/onedr0p/cni-plugins 1 1.4 1.4.0 rolling
home-assistant stable ghcr.io/onedr0p/home-assistant 2024.2.1 rolling
jbops stable ghcr.io/onedr0p/jbops 1 1.0 1.0.893 rolling
kubernetes-kubectl kubectl ghcr.io/onedr0p/kubernetes-kubectl 1.29.1 rolling
lidarr master ghcr.io/onedr0p/lidarr 2 2.0 2.0.7 2.0.7.3849 rolling
lidarr-develop develop ghcr.io/onedr0p/lidarr-develop 2 2.1 2.1.6 2.1.6.3993 rolling
lidarr-nightly nightly ghcr.io/onedr0p/lidarr-nightly 2 2.1 2.1.7 2.1.7.4022 rolling
lidarr-plugins plugins ghcr.io/onedr0p/lidarr-plugins 2 2.1 2.1.1 2.1.1.3878 rolling
par2cmdline-turbo stable ghcr.io/onedr0p/par2cmdline-turbo 1.1.1 rolling
plex stable ghcr.io/onedr0p/plex 1.32.8.7639-fb6452ebf rolling
plex-beta beta ghcr.io/onedr0p/plex-beta 1.40.0.7996-4956e330f rolling
postgres-init stable ghcr.io/onedr0p/postgres-init 16 16.1 rolling
prowlarr master ghcr.io/onedr0p/prowlarr 1 1.12 1.12.2 1.12.2.4211 rolling
prowlarr-develop develop ghcr.io/onedr0p/prowlarr-develop 1 1.13 1.13.2 1.13.2.4251 rolling
prowlarr-nightly nightly ghcr.io/onedr0p/prowlarr-nightly 1 1.13 1.13.3 1.13.3.4271 rolling
qbittorrent stable ghcr.io/onedr0p/qbittorrent 4 4.6 4.6.3 rolling
qbittorrent-beta beta ghcr.io/onedr0p/qbittorrent-beta 4 4.6 4.6.3 rolling
radarr master ghcr.io/onedr0p/radarr 5 5.2 5.2.6 5.2.6.8376 rolling
radarr-develop develop ghcr.io/onedr0p/radarr-develop 5 5.3 5.3.4 5.3.4.8567 rolling
radarr-nightly nightly ghcr.io/onedr0p/radarr-nightly 5 5.3 5.3.5 5.3.5.8579 rolling
readarr-develop develop ghcr.io/onedr0p/readarr-develop 0 0.3 0.3.18 0.3.18.2411 rolling
readarr-nightly nightly ghcr.io/onedr0p/readarr-nightly 0 0.3 0.3.18 0.3.18.2411 rolling
sabnzbd stable ghcr.io/onedr0p/sabnzbd 4 4.2 4.2.2 rolling
sonarr main ghcr.io/onedr0p/sonarr 4 4.0 4.0.1 4.0.1.929 rolling
sonarr-develop develop ghcr.io/onedr0p/sonarr-develop 4 4.0 4.0.1 4.0.1.1114 rolling
tautulli master ghcr.io/onedr0p/tautulli 2 2.13 2.13.4 rolling
theme-park stable ghcr.io/onedr0p/theme-park 1 1.15 1.15.1 rolling
transmission stable ghcr.io/onedr0p/transmission 4.0.5 rolling
udp-broadcast-relay-redux stable ghcr.io/onedr0p/udp-broadcast-relay-redux 1 1.0 1.0.28 rolling
volsync stable ghcr.io/onedr0p/volsync 0 0.8 0.8.0 rolling

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
ubuntu focal true true ubuntu:focal-rolling
ubuntu focal true true ubuntu:focal-19880312
alpine 3.16 true true alpine:rolling
alpine 3.16 true true alpine:3.16.0
sonarr develop false false sonarr-develop:3.0.8.1538
sonarr develop false false sonarr-develop:rolling
sonarr main true false sonarr:3.0.8.1507
sonarr main true false sonarr: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.

containers's People

Contributors

9numbernine9 avatar aleksasiriski avatar anthr76 avatar auricom avatar bjw-s avatar bot-ross[bot] avatar buroa avatar casmith avatar cdloh avatar chkpwd avatar crutonjohn avatar github-actions[bot] avatar ishioni avatar jameshurst avatar jjgadgets avatar luclu avatar mmalyska avatar moenzuel avatar npawelek avatar onedr0p avatar opello avatar orhideous avatar renovate[bot] avatar rtrox avatar rust84 avatar samip5 avatar szinn avatar toboshii avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.