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
When using repositories like AWS ECR, the authentication expires quite rapidly and the generated passwords tend to be quite long. Other extant OCI style tools, such as the docker utility, support taking in a password from stdin, allowing the developer to skip a step of making a temporary file or copying the password to the clipboard.
Using --password-stdin will match up with the docker and podman utilities, and coincide well with AWS's instructions on how to use their ECR service.
Consequently because wasme is using the oras library, the temporary workaround I have here is to log in via the oras command line tool before attempting wasme push or wasme pull commands.
When using repositories like AWS ECR, the authentication expires quite rapidly and the generated passwords tend to be quite long. Other extant OCI style tools, such as the
docker
utility, support taking in a password from stdin, allowing the developer to skip a step of making a temporary file or copying the password to the clipboard.Using
--password-stdin
will match up with thedocker
andpodman
utilities, and coincide well with AWS's instructions on how to use their ECR service.Before:
After:
The text was updated successfully, but these errors were encountered: