bruno.corucho
07/08/2020, 9:57 AMstrdata.storage = Docker(registry_url=os.environ["REGISTRY_URL"], #I want the flow name appended in here
dockerfile="deploy/Dockerfile",
image_tag=os.environ["CI_COMMIT_TAG"],
image_name=strdata.name)
# registers the flow to the server/pro d
strdata.register(project_name=os.environ["PROJECT_NAME"]) #but the log tells me there is no repository name = project_name in our registry_url
josh
07/08/2020, 11:21 AMos.environ["REGISTRY_URL"]
being empty. Could you post the full traceback? I’m not sure why it is attempting to use the project_name as the registry url. As the default behavior is that when no registry url is provided it just ignores it from that point on.Docker(registry_url=os.environ["REGISTRY_URL"], image_name=strdata.name, ...)
bruno.corucho
07/08/2020, 12:21 PM