-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for custom files to update #236
Comments
I'm changing the subject to allow us to pass a list of files we want to scan vs. only supporting Dockerfiles |
afalko
changed the title
Add support for docker-compose yaml files
Add support for custom files to update
Nov 12, 2021
Also while we do this, we should consider supporting wild cards: |
We already scan all |
I believe you'll need to be somewhat specific about parsing / file format as well. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem? Please describe.
The image updater currently only catches image tags that are in Dockerfiles in our repo. It would be nice if it also updated
docker-compose files so that we would not need to manually push commits to the PRs that the tool creates.
Describe the solution you'd like
Add ability to search for and update docker-compose yaml files in a addition to Dockerfiles. A basic search might be
something like:
language:yaml filename:docker-compose "image: docker/image/name"
. This will miss files that don'tfollow the docker-compose file name convention, but that's probably better than searching all yaml files.
Describe alternatives you've considered
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: