An open API service indexing awesome lists of open source software.

https://github.com/fiam/dbc-with-private-registry


https://github.com/fiam/dbc-with-private-registry

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# Build Cloud with a private registry

A minimal Python web app (using Flask) with Docker and GitHub Actions for automatic publishing to GitHub Container Registry (GHCR). It includes multi-platform builds and auto-tagging.

---

## What It Does

- Serves a simple web app on port `5001`
- `/` returns the current server time
- `/healthz` returns HTTP 200 OK
- Automatically builds and publishes to GHCR on every push via GitHub Actions
- Tags images as `v1`, `v2`, ... and `latest`
- Multi-platform builds (`linux/amd64`, `linux/arm64`)

---

## Live development with Docker Compose

`docker compose up --watch --build`.

## Run from ghrc.io

`docker run --pull=always -p 5001:5001 ghcr.io/fiam/dbc-with-private-registry:latest`