ci: publish atryum image to Docker Hub#76
Open
eggshell wants to merge 1 commit into
Open
Conversation
Add a GitHub Actions workflow that builds the production atryum image from Dockerfile.prod and pushes it to Docker Hub under validmind/atryum. - Builds multi-arch images (linux/amd64, linux/arm64) via QEMU + Buildx - Derives tags with docker/metadata-action: latest and sha on main, semver tags on v* releases, and a custom tag on manual dispatch - Authenticates with DOCKERHUB_USERNAME / DOCKERHUB_TOKEN secrets - Uses GitHub Actions cache to speed up rebuilds The org gha-workflows reusable build/push workflows target AWS ECR only, so a standalone workflow is used for the Docker Hub destination.
nibalizer
approved these changes
Jun 16, 2026
Collaborator
|
Merge? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a GitHub Actions workflow that builds the production atryum image from
Dockerfile.prodand publishes it to Docker Hub undervalidmind/atryum.Changes
.github/workflows/docker-publish.ymllinux/amd64,linux/arm64) via QEMU + Buildxdocker/metadata-action:main→latest,main,sha-<short>v*tags → semver (1.2.3,1.2) +sha-<short>workflow_dispatch→ custom tag input (defaults tolatest)Notes
The org
gha-workflowsreusable build/push workflows target AWS ECR only, so a standalone workflow is used here to reach the Docker Hub destination.Requirements
Repo/org secrets must be set:
DOCKERHUB_USERNAMEandDOCKERHUB_TOKEN.