Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/detect-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ function detect() {

tdir=$(dirname $TARGET_DIR)/$(basename $TARGET_DIR)

# iterate over all Dockerfiles and list images:
filelist=($(find ${tdir} -type f -name Dockerfile\*))
# iterate over all Dockerfiles / Containerfiles and list images:
filelist=($(find ${tdir} -type f -name Dockerfile\* -o -name Containerfile\*))

# capture the public registry list
registrylist=$(cat public_registries.conf)
Expand Down