https://github.com/fiam/dbc-with-private-registry
https://github.com/fiam/dbc-with-private-registry
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fiam/dbc-with-private-registry
- Owner: fiam
- Created: 2025-04-07T20:20:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-08T14:11:20.000Z (about 1 year ago)
- Last Synced: 2025-07-29T10:23:08.111Z (11 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`