Fix some spacing in the README

This commit is contained in:
2025-02-12 01:33:35 -06:00
parent 92f757712c
commit e8ae17a880

@@ -44,11 +44,14 @@ Repos are defined in `repos.yml` and read in via stdin
repository_name: # A friendly name for the repository, pick your poison
repo_url: "https://foo.bar/repo" # The path to the repository to git clone from
repo_branch: main # The branch to clone
repo_build_tags: true # Optional - If specified and true, build and push the latest tag from this repo
repo_build_tags: true # Optional - If specified and true, build and push the
# latest tag from this repo. Defaults to false
containers: # A dict of containers you want built
container1: # Name of the first container
path: "container1" # The relative path in the repo where the Dockerfile for this lives
dockerfile: "Dockerfile-foo" # Optional - The name of the Dockerfile to use. Defaults to "Dockerfile"
path: "container1" # The relative path in the repo where the Dockerfile
# for this lives
dockerfile: "Dockerfile-foo" # Optional - The name of the Dockerfile to use.
# Defaults to "Dockerfile"
container2: # Multiple containers can be built from one repo
path: "container2"
dockerfile: "Dockerfile-bar"