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
Currently infix-containers.yang supports the same image URLs as the podman create command. It is limited to the Image transport:path format supported by podman. There are however cases where a user may want to use other means of fetching their container images: https://, http://, and ftp:// come to mind.
The Infix container helper script supports these additional URI:s for the container load sub-command. So refactoring the script to support this also for create would be very useful, particularly for the #776 test.
The text was updated successfully, but these errors were encountered:
- Anonymous FTP, or URL encoded ftp://user:hostname@addr/oci.tar.gz
- HTTP/HTTPS fetched with curl, optional credentials support
- Verify download against an optional sha256 checksum
Ensure the unpacked directory name does not contain a ':', it is a
restricted character and cannot be part of the file name. If this
syntax is used we retain it as the name and retag it after load.
Fix#801
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
- Anonymous FTP, or URL encoded ftp://user:hostname@addr/oci.tar.gz
- HTTP/HTTPS fetched with curl, optional credentials support
- Verify download against an optional sha256 checksum
Ensure the unpacked directory name does not contain a ':', it is a
restricted character and cannot be part of the file name. If this
syntax is used we retain it as the name and retag it after load.
Fix#801
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
- Anonymous FTP, or URL encoded ftp://user:hostname@addr/oci.tar.gz
- HTTP/HTTPS fetched with curl, optional credentials support
- Verify download against an optional sha256 checksum
Ensure the unpacked directory name does not contain a ':', it is a
restricted character and cannot be part of the file name. If this
syntax is used we retain it as the name and retag it after load.
Fix#801
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Currently infix-containers.yang supports the same image URLs as the
podman create
command. It is limited to the Image transport:path format supported by podman. There are however cases where a user may want to use other means of fetching their container images: https://, http://, and ftp:// come to mind.The Infix
container
helper script supports these additional URI:s for thecontainer load
sub-command. So refactoring the script to support this also forcreate
would be very useful, particularly for the #776 test.The text was updated successfully, but these errors were encountered: