We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm not sure if i am wrong, but I couldn't find a wrapper for docker's load functionality for offline usage.
Example: docker save --output myimage.tar myimage docker load --input myimage.tar
The text was updated successfully, but these errors were encountered:
@mynote That is true! If you'd like, please submit a PR that implements those commands (Commands/client.cs) - around this fashion:
public static CommandResponse<IList<string>> Load(this DockerUri host, string image, bool quiet = true, ICertificatePaths certificates = null) { var args = $"{host.RenderBaseArgs(certificates)}"; var options = string.Empty; if (quiet) { options += "--quiet"; } return new ProcessExecutor<StringListResponseParser, IList<string>>( "docker".ResolveBinary(), $"{args} load --input {image} {options}").Execute(); }
...and a unit test to save and then load the image...
Cheers, Mario
Sorry, something went wrong.
Thank you, Mario. Cheers, Emanuel
No branches or pull requests
I'm not sure if i am wrong, but I couldn't find a wrapper for docker's load functionality for offline usage.
Example:
docker save --output myimage.tar myimage
docker load --input myimage.tar
The text was updated successfully, but these errors were encountered: