Thanks for this work (found you via YouTube). I noticed a couple issues in some of the docker-compose files.
Authelia/Traefik/docker-compose.yaml
spacing
missing quote on last label
Authentik/Web-Proxies/*.yml
I was getting some missing definitions since it couldn't locate the .env file at the specified location.
Rather than adjust the location and assuming the examples aren't meant to live in this sub-folder, to fix it, I added a symlink to the .env file so it could at least check that what was referenced was defined in the .env file.
Frigate/docker-compose.yaml
proxy network was missing a "networks" section header
In case you'd like to use them, I also included a pre-commit config that checks files before they're committed to the repo.
checks if docker-compose files are valid
an AWS credentials check
some symlink checks since I added a symlink and don't want to cause issues in the future...
Hi James,
Thanks for this work (found you via YouTube). I noticed a couple issues in some of the docker-compose files.
Authelia/Traefik/docker-compose.yaml
Authentik/Web-Proxies/*.yml
Frigate/docker-compose.yaml
In case you'd like to use them, I also included a pre-commit config that checks files before they're committed to the repo.
Thanks for your work!