This repository contains custom-built OCI container images for various popular open-source projects I use for personal projects and home production.
- 🔨 Built from source - Built from source whenever possible
- ⚡ Optimized builds - Built with custom build options to remove uneeded features whenever possible to reduce attack surface
- 🛡️ Secure base - Uses Wolfi as minimal base image
| Image | Description | Links |
|---|---|---|
| alertmanager | Prometheus Alertmanager | GitHub |
| coredns | CoreDNS is a DNS server that chains plugins | Website |
| coreos-toolbox | Custom Fedora image including utilities and tools for debugging on Fedora CoreOS | - |
| falco | Cloud Native Runtime Security | Website |
| falco-sidekick | Connect Falco to your ecosystem | GitHub |
| feishin | A modern self-hosted music player | GitHub |
| fusion | A lightweight, self-hosted friendly RSS reader | GitHub |
| grafana | The open and composable observability and data visualization platform | Website |
| navidrome | Modern Music Server and Streamer compatible with Subsonic/Airsonic | Website |
| node-exporter | Exporter for machine metrics | GitHub |
| pgbouncer | Lightweight connection pooler for PostgreSQL | Website |
| podman-exporter | Prometheus exporter for Podman environments exposing containers, pods, images, volumes and networks information | GitHub |
| postgresql | Custom PostgreSQL image built from source with additional extensions and tools | Website |
| prometheus | The Prometheus monitoring system and time series database | Website |
| registry | Distribution implementation for storing and distributing of container images and artifacts | GitHub |
| telegraf | Agent for collecting, processing, aggregating, and writing metrics, logs, and other arbitrary data | GitHub |
| traefik | The Cloud Native Application Proxy | Website |
| ubuntu | Custom Ubuntu system container image | Website |
| valkey | An open source, in-memory data store | Website |
All images are publicly available through GitHub Container Registry:
# Pull an image
docker pull ghcr.io/f-bn/<image>:<tag>
# Example: Pull specific version
docker pull ghcr.io/f-bn/prometheus:3.7.3Each image directory contains its own Dockerfile and usage instructions. To build an image locally:
cd <image-directory>
docker build -t <image-name>:<tag> [--build-arg VERSION=x.x.x] -f Dockerfile .See LICENSE file for details.