Getting the Container Registry working on source compiled version using Podman

Self-compiled v16.7.0
I’m not able to get container, gitlab-container-registry, working for creating the Container Registry functions within Gitlab since it seems to be looking for configuration template files that are not included with the source build version of Gitlab. It took me longer than it should to realize that the documentation [1] was referencing pulling down the registry as a Docker container from Gitlab’s external registry. Now that I have it pulled, when trying to run it via Podman, it’s putting an error message on the terminal about missing /etc/docker/registry/config.yml but I am not finding any sort of configuration file within the Gitlab files that would indicate it was such a file to use.

Where do if find either templates or example config files running the gitlab-container-registry container?
Has anyone else gotten the container registry to work on the source compiled version, especially when using Podman?

podman run --replace --restart=always --network=host --name registry gitlab-container-registry:v16.7.0 
Begin parsing .tpl templates from /etc
Copying other config files found in /etc to /etc/docker/registry
configuration error: open /etc/docker/registry/config.yml: no such file or directory
Usage:
  registry serve <config> [flags]

Flags:
  -h, --help   help for serve

I have tried using this file [2] from the Gitlab container-registry project but it’s still complaining when I’m adding it as a run command of “registry serve /etc/docker/registry/config.yml”

[1] GitLab container registry administration | GitLab

[2] config/filesystem.yml · master · GitLab.org / container-registry · GitLab