List of image names to match.
- Use "
*" to match anything
- Lines that start with "
#" or empty will be ignored
- Only the domain and path components are matched. Tag and digest components are ignored.
- Each name is separated by a newline.
All image references are normalized before matching against the patterns.
- If no domain component, "
docker.io" will be added
- If domain is "
docker.io" and no repo component "library/" will be added
maven → docker.io/library/maven
docker.io/maven → docker.io/library/maven
example.com/maven → example.com/maven
Examples
# match all docker hub images
docker.io/*
# match all official Docker Hub images
docker.io/library/*
# match maven and node from docker hub
docker.io/library/maven
docker.io/library/node