diff --git a/README.md b/README.md
index 9809b2c..a46a472 100644
--- a/README.md
+++ b/README.md
@@ -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"