You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug podman build -f Dockerfile -t experiment:target will fail if experiment is capitalized ( a possibly target as well, though I haven't tested this). It produces this error message:
Error: tag MOM6_SIS2_GENERIC_4P_compile_symm_yaml:prod: invalid reference format: repository name must be lowercase
Error: repository name must be lowercase
INFO: Starting build...
FATAL: While performing build: conveyor failed to get: while fetching image: initializing source docker-archive:MOM6_SIS2_GENERIC_4P_compile_symm_yaml-prod.tar: opening file
To Reproduce
Create an experiment in your compile yaml with a capitalized experiment name and work through the fre work flow. When you run createContainer.sh, the you will get the following error
Expected behavior
Podman creates the container
Additional context
It seems like Docker/Podman has a rule against repo names /images/ tags with capital letters. I haven't spent too much time digging into when you can and cannot use capital letters, but this thread on the docker forums seems to have a little more info.
Since it looks the main issue is when you try to run podman build with a image name that contains capital letters, I think the easiest solution would just be changing image names to lowercase when writing the createContainer script.
The text was updated successfully, but these errors were encountered:
Describe the bug
podman build -f Dockerfile -t experiment:target
will fail ifexperiment
is capitalized ( a possibly target as well, though I haven't tested this). It produces this error message:To Reproduce
Create an experiment in your compile yaml with a capitalized experiment name and work through the
fre
work flow. When you runcreateContainer.sh
, the you will get the following errorExpected behavior
Podman creates the container
Additional context
It seems like Docker/Podman has a rule against repo names /images/ tags with capital letters. I haven't spent too much time digging into when you can and cannot use capital letters, but this thread on the docker forums seems to have a little more info.
Since it looks the main issue is when you try to run
podman build
with a image name that contains capital letters, I think the easiest solution would just be changing image names to lowercase when writing thecreateContainer
script.The text was updated successfully, but these errors were encountered: