1podman-image-scp(1)() podman-image-scp(1)()
2
3
4
6 podman-image-scp - Securely copy an image from one host to another
7
8
10 podman image scp [options] name[:tag]
11
12
14 podman image scp copies container images between hosts on a network.
15 You can load to the remote host or from the remote host as well as in
16 between two remote hosts. Note: :: is used to specify the image name
17 depending on if you are saving or loading.
18
19
20 podman image scp [GLOBAL OPTIONS]
21
22
23 podman image scp [OPTIONS] NAME[:TAG] [HOSTNAME::]
24
25
26 podman image scp [OPTIONS] [HOSTNAME::]IMAGENAME
27
28
29 podman image scp [OPTIONS] [HOSTNAME::]IMAGENAME [HOSTNAME::]
30
31
33 --quiet, -q
34 Suppress the output
35
36
37 --help, -h
38 Print usage statement
39
40
42 $ podman image scp alpine
43 Loaded image(s): docker.io/library/alpine:latest
44
45
46
47 $ podman image scp alpine Fedora::/home/charliedoern/Documents/alpine
48 Getting image source signatures
49 Copying blob 72e830a4dff5 done
50 Copying config 85f9dc67c7 done
51 Writing manifest to image destination
52 Storing signatures
53 Loaded image(s): docker.io/library/alpine:latest
54
55
56
57 $ podman image scp Fedora::alpine RHEL::
58 Loaded image(s): docker.io/library/alpine:latest
59
60
61
62 $ podman image scp charliedoern@192.168.68.126:22/run/user/1000/podman/podman.sock::alpine
63 WARN[0000] Unknown connection name given. Please use system connection add to specify the default remote socket location
64 Getting image source signatures
65 Copying blob 9450ef9feb15 [--------------------------------------] 0.0b / 0.0b
66 Copying config 1f97f0559c done
67 Writing manifest to image destination
68 Storing signatures
69 Loaded image(s): docker.io/library/alpine:latest
70
71
72
74 podman(1), podman-load(1), podman-save(1), podman-remote(1), podman-
75 system-connection-add(1), containers.conf(5), containers-transports(5)
76
77
79 July 2021, Originally written by Charlie Doern cdoern@redhat.com
80 ⟨mailto:cdoern@redhat.com⟩
81
82
83
84 podman-image-scp(1)()