allow changing increment
Build empanada images for imagefactory / buildx (push) Failing after 5s Details
Build empanada container images for lorax / buildx (push) Successful in 2s Details

This commit is contained in:
Louis Abel 2024-05-06 11:46:09 -07:00
parent dea52484e7
commit 544f4ef07a
Signed by: label
GPG Key ID: 2A6975660E424560
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,7 @@ parser.add_argument('--hashed', action='store_true')
parser.add_argument('--just-copy-it', action='store_true', help="Just copy the images to the compose dir")
parser.add_argument('--force-build', action='store_true', help="Just build and overwrite the images")
parser.add_argument('--builder', type=str, help="Choose a builder type and override the set value in the configs")
parser.add_argument('--increment', type=str, help="Changes the default increment of 0 to a number of your choice")
results = parser.parse_args()
rlvars = rldict[results.release]
major = rlvars['major']
@ -36,6 +37,7 @@ a = LiveBuild(
justcopyit=results.just_copy_it,
force_build=results.force_build,
builder=results.builder,
image_increment=results.increment,
logger=results.logger
)