v0.2: Publish Docker image to a registry #12
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Today the deploy quick-start says
docker compose up -d --build, which means anyone deploying rebuilds from source. That works for a single-operator deploy but it's friction-heavy for any kind of repeatable rollout, and the v0.1.0-dragonfork tag has no published artifact behind it.Scope
dragonfork-core:${TAG}on tag push (v*-dragonfork)forge.wilddragon.net's container registry if it has one, else the GitHub Container Registry mirror, else Docker Hub. Decide at design time.docker pull+docker compose up -d(no--build)build:block kept as a fallback for source buildsWhy now
The metrics work in the observability issue will add new images (Prom + Grafana from upstream), and the rollout doc already starts saying "docker compose pull". That sentence only works if Core is also pullable. Closes that small but visible gap.
Open questions for design
v0.2.0-dragonforkonly, or also a rollinglatestandmain?Needs a short design doc before implementation.