Skip to content

Commit d589ae9

Browse files
Editorial.
1 parent fe8694a commit d589ae9

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

content/install-guides/skopeo.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Skopeo is a command-line utility that performs various operations on container i
2424

2525
This article explains how to install Skopeo for Ubuntu on Arm.
2626

27-
Skopeo is available for Windows, macOS, and Linux and supports the Arm architecture. Refer to [Installing Skopeo](https://github.com/containers/skopeo/blob/main/install.md) for information about other operating systems and architectures.
27+
Skopeo is available for Windows, macOS, and Linux and supports the Arm architecture. See [Installing Skopeo](https://github.com/containers/skopeo/blob/main/install.md) for further information about other operating systems and architectures.
2828

2929
## What should I consider before installing Skopeo on Arm?
3030

@@ -56,13 +56,13 @@ Confirm the installation by checking the version:
5656
skopeo --version
5757
```
5858

59-
To see the help message:
59+
To see the help message use this command:
6060

6161
```bash
6262
skopeo --help
6363
```
6464

65-
The output is:
65+
The output that you will see should be:
6666

6767
```output
6868
Various operations with container images and container image registries
@@ -72,44 +72,44 @@ Usage:
7272
skopeo [command]
7373
7474
Available Commands:
75-
copy Copy an IMAGE-NAME from one location to another
76-
delete Delete image IMAGE-NAME
77-
generate-sigstore-key Generate a sigstore public/private key pair
78-
help Help about any command
79-
inspect Inspect image IMAGE-NAME
80-
list-tags List tags in the transport/repository specified by the SOURCE-IMAGE
81-
login Login to a container registry
82-
logout Logout of a container registry
83-
manifest-digest Compute a manifest digest of a file
84-
standalone-sign Create a signature using local files
85-
standalone-verify Verify a signature using local files
86-
sync Synchronize one or more images from one location to another
75+
copy Copy an IMAGE-NAME from one location to another.
76+
delete Delete image IMAGE-NAME.
77+
generate-sigstore-key Generate a sigstore public/private key pair.
78+
help Help about any command.
79+
inspect Inspect image IMAGE-NAME.
80+
list-tags List tags in the transport/repository specified by the SOURCE-IMAGE.
81+
login Log in to a container registry.
82+
logout Log out of a container registry.
83+
manifest-digest Compute a manifest digest of a file.
84+
standalone-sign Create a signature using local files.
85+
standalone-verify Verify a signature using local files.
86+
sync Synchronize one or more images from one location to another.
8787
8888
Flags:
89-
--command-timeout duration timeout for the command execution
90-
--debug enable debug output
91-
-h, --help help for skopeo
92-
--insecure-policy run the tool without any policy check
93-
--override-arch ARCH use ARCH instead of the architecture of the machine for choosing images
94-
--override-os OS use OS instead of the running OS for choosing images
95-
--override-variant VARIANT use VARIANT instead of the running architecture variant for choosing images
96-
--policy string Path to a trust policy file
97-
--registries.d DIR use registry configuration files in DIR (e.g. for container signature storage)
98-
--tmpdir string directory used to store temporary files
99-
-v, --version Version for Skopeo
89+
--command-timeout duration Timeout for the command execution.
90+
--debug Enable debug output.
91+
-h, --help Help for skopeo.
92+
--insecure-policy Run the tool without any policy check.
93+
--override-arch ARCH Use ARCH instead of the architecture of the machine for choosing images.
94+
--override-os OS Use OS instead of the running OS for choosing images.
95+
--override-variant VARIANT Use VARIANT instead of the running architecture variant for choosing images.
96+
--policy string Path to a trust policy file.
97+
--registries.d DIR Use registry configuration files in DIR (for example, for container signature storage).
98+
--tmpdir string Directory used to store temporary files.
99+
-v, --version Version for Skopeo.
100100
101101
Use "skopeo [command] --help" for more information about a command.
102102
```
103103

104104
## How do I get started with Skopeo?
105105

106-
Some commands to get you started with Skopeo are demonstrated below.
106+
You can use the commands listed below to get you started with Skopeo.
107107

108108
### How can I check if a container image supports Arm?
109109

110110
To find out if an image is multi-architecture, including Arm, you can inspect the image's manifest.
111111

112-
For example, to check if the dev container available for creating Arm Learning Paths supports the Arm architecture run:
112+
For example, to check if the dev container available for creating Arm Learning Paths supports the Arm architecture, run:
113113

114114
```bash
115115
skopeo inspect --raw docker://docker.io/armswdev/learn-dev-container:latest | jq '.manifests[] | select(.platform.architecture == "arm64")'
@@ -166,7 +166,7 @@ The output confirms that both `arm64` and `amd64` are supported architectures as
166166

167167
## What are some other uses for Skopeo?
168168

169-
Copy an image from a registry to a local directory. This command is similar to `docker pull` and will copy the image from the remote registry to your local directory.
169+
Copy an image from a registry to a local directory. This command is similar to `docker pull` and copies the image from the remote registry to your local directory.
170170

171171
```bash
172172
skopeo copy docker://docker.io/armswdev/uname:latest dir:./uname

0 commit comments

Comments
 (0)