summaryrefslogtreecommitdiff
path: root/cmd/podman/images
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-08-27 13:26:56 -0400
committerGitHub <noreply@github.com>2021-08-27 13:26:56 -0400
commitb21f8ea206442b93dd6ac95648b185cf03e912b7 (patch)
tree586d431dd0470ecb3a21341ffc0d59d975bb03da /cmd/podman/images
parent8cd2f2fb80b26dc54bbb1f43ec44df16dee8f01b (diff)
parent84694170402ff699065382ba2d2fb172c3b6c88f (diff)
downloadpodman-b21f8ea206442b93dd6ac95648b185cf03e912b7.tar.gz
podman-b21f8ea206442b93dd6ac95648b185cf03e912b7.tar.bz2
podman-b21f8ea206442b93dd6ac95648b185cf03e912b7.zip
Merge pull request #11333 from rhatdan/http-proxy
Globally replace http:// with https://
Diffstat (limited to 'cmd/podman/images')
-rw-r--r--cmd/podman/images/import.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/images/import.go b/cmd/podman/images/import.go
index bc80417cc..d4bc0f610 100644
--- a/cmd/podman/images/import.go
+++ b/cmd/podman/images/import.go
@@ -30,7 +30,7 @@ var (
RunE: importCon,
Args: cobra.RangeArgs(1, 2),
ValidArgsFunction: common.AutocompleteDefaultOneArg,
- Example: `podman import http://example.com/ctr.tar url-image
+ Example: `podman import https://example.com/ctr.tar url-image
cat ctr.tar | podman -q import --message "importing the ctr.tar tarball" - image-imported
cat ctr.tar | podman import -`,
}
@@ -42,7 +42,7 @@ var (
RunE: importCommand.RunE,
Args: importCommand.Args,
ValidArgsFunction: importCommand.ValidArgsFunction,
- Example: `podman image import http://example.com/ctr.tar url-image
+ Example: `podman image import https://example.com/ctr.tar url-image
cat ctr.tar | podman -q image import --message "importing the ctr.tar tarball" - image-imported
cat ctr.tar | podman image import -`,
}