From 020089b33af1132879b88568ecc7f80519132db4 Mon Sep 17 00:00:00 2001 From: Jacob Babor <jacob@babor.tech> Date: Wed, 12 Feb 2025 01:37:07 -0600 Subject: [PATCH] Clarify container naming --- README.md | 8 ++++---- repos.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a46a472..36686f5 100644 --- a/README.md +++ b/README.md @@ -27,11 +27,11 @@ Given a registry user `$USER`, every run of this script will do the following fo * For each container `$CONTAINER` to build from this repository: * `cd` into the relative path * Build the container using the specified Dockerfile - * Push the image as `$USER/$REPO:$COMMIT_SHA` - * Push the image as `$USER/$REPO:bleeding` + * Push the image as `$USER/$REPO-$CONTAINER:$COMMIT_SHA` + * Push the image as `$USER/$REPO-$CONTAINER:bleeding` * If the ref is a tag - * Push the image as `$USER/$REPO:$TAG` - * Push the image as `$USER/$REPO:latest` + * Push the image as `$USER/$REPO-$CONTAINER:$TAG` + * Push the image as `$USER/$REPO-$CONTAINER:latest` Pretty straightforward, pretty intuitive. Every build updates `:bleeding`, tags update `:latest`. diff --git a/repos.yml b/repos.yml index f21ca7c..8495301 100644 --- a/repos.yml +++ b/repos.yml @@ -6,7 +6,7 @@ repo_branch: "main" repo_build_tags: true containers: - 5dd_client: + client: path: "client" - 5dd_server: + server: path: "server"