Hi community, we are trying to talk to a local reg...
# flyte-support
a
Hi community, we are trying to talk to a local registry and make it available for pyflyte to push there. How do I give registry credentials to pyflyte/ImageSpec?
a
From the terminal where you are running the code try to login to the registry. For example , if using dockerhub , use:
docker login
and then follow the process. Similarly if it is GCP , use your GCP creds to login. After that try running the script
e
a
I tried that, but our problem was more complicated: 1. our dev VM had an outdated version of docker which is incompatible with pyflyte's build step 2. Turns out micromamba and anaconda repos are blocked due to licensing issues with anaconda in the past. That's why after we resolved the docker dependency, the images still wouldn't build. I patched out micromamba and now rely on uv to install the correct python version. Without conda-forge packages it seems to build and run just fine. 3. For docker credentials running
docker login
once stores the credentials for pushing just fine. Soooo, bit of an XY problem. @echoing-account-76888 ping for edit
👍 1
e
Great to see that the problem is solved. Please let me know if there's any more help needed! celebrate