From d1a8fae1aff6ffe341e55f2d3863cb091471e4f3 Mon Sep 17 00:00:00 2001 From: Danny Canter Date: Tue, 10 Jun 2025 09:48:31 -0700 Subject: [PATCH] Add links in README to the various products (#73) --- README.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8fd70bf5..5045b82e 100644 --- a/README.md +++ b/README.md @@ -5,14 +5,13 @@ Containerization is written in [Swift](https://www.swift.org) and uses [Virtuali Containerization provides APIs to: -- Manage OCI images. -- Interact with remote registries. -- Create and populate ext4 file systems. -- Interact with the Netlink socket family. -- Create an optimized Linux kernel for fast boot times. -- Spawn lightweight virtual machines. -- Manage the runtime environment of virtual machines. -- Spawn and interact with containerized processes. +- [Manage OCI images](./Sources/ContainerizationOCI/). +- [Interact with remote registries](./Sources/ContainerizationOCI/Client/). +- [Create and populate ext4 file systems](./Sources/ContainerizationEXT4/). +- [Interact with the Netlink socket family](./Sources/ContainerizationNetlink/). +- [Create an optimized Linux kernel for fast boot times](./kernel/). +- [Spawn lightweight virtual machines and manage the runtime environment](./Sources/Containerization/LinuxContainer.swift). +- [Spawn and interact with containerized processes](./Sources/Containerization/LinuxProcess.swift). - Use Rosetta 2 for executing x86_64 processes on Apple silicon. Please view the [API documentation](https://apple.github.io/containerization/documentation/) for information on the Swift packages that Containerization provides.