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
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
8
8
The tool consumes and produces [OCI-compatible container images](https://github.com/opencontainers/image-spec), so you can pull and run images from any standard container registry. You can push images that you build to those registries as well, and run the images in any other OCI-compatible application.
9
9
10
-
`container` uses the [Containerization](https://github.com/apple/containerization) Swift package for lowlevel container, image, and process management.
10
+
`container` uses the [Containerization](https://github.com/apple/containerization) Swift package for low-level container, image, and process management.
11
11
12
12

13
13
@@ -17,7 +17,7 @@ The tool consumes and produces [OCI-compatible container images](https://github.
17
17
18
18
You need a Mac with Apple silicon to run `container`. To build it, see the [BUILDING](./BUILDING.md) document.
19
19
20
-
`container` is supported on macOS 26, since it takes advantage of new features and enhancements to virtualization and networking in this release. We do not support older versions of macOS and the `container` maintainers typically will not address issues that cannot be reproduced on the macOS 26.
20
+
`container` is supported on macOS 26, since it takes advantage of new features and enhancements to virtualization and networking in this release. We do not support older versions of macOS and the `container` maintainers typically will not address issues that cannot be reproduced on macOS 26.
21
21
22
22
### Initial install
23
23
@@ -35,19 +35,19 @@ container system start
35
35
36
36
For both upgrading and downgrading, you can manually download and install the signed installer package by following the steps from [initial install](#initial-install) or use the `update-container.sh` script (installed to `/usr/local/bin`).
37
37
38
-
If you're upgrading and downgrading, you must stop your existing `container`:
38
+
If you're upgrading or downgrading, you must stop your existing `container`:
39
39
40
40
```bash
41
41
container system stop
42
42
```
43
43
44
-
For upgrading to the latest release version, simply run the command below:
44
+
To upgrade to the latest release, simply run the command below:
45
45
46
46
```bash
47
47
/usr/local/bin/update-container.sh
48
48
```
49
49
50
-
If you're downgrading, you must uninstall your existing `container` (the `-k` flag keeps your user data, while `-d` removes it):
50
+
To downgrade, you must uninstall your existing `container` (the `-k` flag keeps your user data, while `-d` removes it):
51
51
52
52
```bash
53
53
/usr/local/bin/uninstall-container.sh -k
@@ -85,8 +85,8 @@ To retain your user data so that it is available should you reinstall later, run
85
85
86
86
## Contributing
87
87
88
-
Contributions to `container` are welcomed and encouraged. Please see our [main contributing guide](https://github.com/apple/containerization/blob/main/CONTRIBUTING.md) for more information.
88
+
Contributions to `container` are welcome and encouraged. Please see our [main contributing guide](https://github.com/apple/containerization/blob/main/CONTRIBUTING.md) for more information.
89
89
90
90
## Project Status
91
91
92
-
The container project is currently under active development. Its stability, both for consuming the project as a Swift package and the `container` tool, is only guaranteed within patch versions, such as between 0.1.1 and 0.1.2. Minor version number releases may include breaking changes until we achieve a 1.0.0 release.
92
+
The container project is currently under active development. Its stability, both for consuming the project as a Swift package and the `container` tool, is only guaranteed within patch versions, such as between 0.1.1 and 0.1.2. Minor version releases may include breaking changes until we reach a 1.0.0 release.
0 commit comments