mirror of
https://github.com/apple/container.git
synced 2026-07-13 04:57:08 +00:00
3b5c253059
See discussion below for example. For multiple network interfaces in a single container we'll want to integrate against a containerization that includes apple/containerization#156. The change bumps the containerization dependency to 0.2.0 and addresses the breaking API changes. ```console % container network OVERVIEW: Manage container networks USAGE: container network <subcommand> OPTIONS: --version Show the version. -h, --help Show help information. SUBCOMMANDS: create Create a new network delete, rm Delete one or more networks list, ls List networks inspect Display information about one or more networks See 'container help network <subcommand>' for detailed help. ```
96 lines
8.7 KiB
Markdown
96 lines
8.7 KiB
Markdown
# Technical Overview
|
|
|
|
A brief description and technical overview of `container`.
|
|
|
|
## What are containers?
|
|
|
|
Containers are a way to package an application and its dependencies into a single unit. At runtime, containers provide isolation from the host machine as well as other colocated containers, allowing applications to run securely and efficiently in a wide variety of environments.
|
|
|
|
Containerization is an important server-side technology that is used throughout the software lifecycle:
|
|
|
|
- Backend developers use containers on their personal systems to create predictable execution environments for applications, and to develop and test their applications under conditions that better approximate how they would run in the datacenter.
|
|
- Continuous integration and deployment (CI/CD) systems use containerization to perform reproducible builds of applications, package the results as deployable images, and deploy them to the datacenter.
|
|
- Datacenters run container orchestration platforms that use the images to run containerized applications in a reliable, highly available compute cluster.
|
|
|
|
None of this workflow would be practical without ensuring interoperability between different container implementations. The Open Container Initiative (OCI) creates and maintains these standards for container images and runtimes.
|
|
|
|
## How does `container` run my container?
|
|
|
|
Many operating systems support containers, but the most commonly encountered containers are those that run on the Linux operating system. On macOS, the typical way to run Linux containers is to launch a Linux virtual machine (VM) that hosts all of your containers.
|
|
|
|
`container` runs containers differently. Using the open source [Containerization](https://github.com/apple/containerization) package, it runs a lightweight VM for each container that you create. This approach has the following properties:
|
|
|
|
- Security: Each container has the isolation properties of a full VM, using a minimal set of core utilities and dynamic libraries to reduce resource utilization and attack surface.
|
|
- Privacy: When sharing host data using `container`, you mount only necessary data into each VM. With a shared VM, you need to mount all data that you may ever want to use into the VM, so that it can be mounted selectively into containers.
|
|
- Performance: Containers created using `container` require less memory than full VMs, with boot times that are comparable to containers running in a shared VM.
|
|
|
|
Since `container` consumes and produces standard OCI images, you can easily build with and run images produced by other container applications, and the images that you build will run everywhere.
|
|
|
|
`container` and the underlying Containerization package integrate with many of the key technologies and frameworks of macOS:
|
|
|
|
- The Virtualization framework for managing Linux virtual machines and their attached devices.
|
|
- The vmnet framework for managing the virtual network to which the containers attach.
|
|
- XPC for interprocess communication.
|
|
- Launchd for service management.
|
|
- Keychain services for access to registry credentials.
|
|
- The unified logging system for application logging.
|
|
|
|
You use the `container` command line interface (CLI) to start and manage your containers, build container images, and transfer images from and to OCI container registries. The CLI uses a client library that communicates with `container-apiserver` and its helpers.
|
|
|
|
The `container-apiserver` is a launch agent that launches when you run the `container system start` command, and terminates when you run `container system stop`. It provides the client APIs for managing container and network resources.
|
|
|
|
When `container-apiserver` starts, it launches an XPC helper `container-core-images` that exposes an API for image management and manages the local content store, and another XPC helper `container-network-vmnet` for the virtual network. For each container that you create, `container-apiserver` launches a container runtime helper `container-runtime-linux` that exposes the management API for that specific container.
|
|
|
|

|
|
|
|
## What limitations does `container` have today?
|
|
|
|
With the initial release of `container`, you get basic facilities for building and running containers, but many common containerization features remain to be implemented. Consider [contributing](../CONTRIBUTING.md) new features and bug fixes to `container` and the Containerization projects!
|
|
|
|
### Container to host networking
|
|
|
|
In the initial release, there is no way to route traffic directly from a client in a container to a host-based application listening on the loopback interface at 127.0.0.1. If you were to configure the application in your container to connect to 127.0.0.1 or `localhost`, requests would simply go to the loopback interface in the container, rather than your host-based service.
|
|
|
|
You can work around this limitation by configuring the host-based application to listen on the wildcard address 0.0.0.0, but this practice is insecure and not recommended because, without firewall rules, this exposes the application to external requests.
|
|
|
|
A more secure approach uses `socat` to redirect traffic from the container network gateway to the host-based service. For example, to forward traffic for port 8000, configure your containerized application to connect to `192.168.64.1:8000` instead of `127.0.0.1:8000`, and then run the following command in a terminal on your Mac to forward the port traffic from the gateway to the host:
|
|
|
|
```bash
|
|
socat TCP-LISTEN:8000,fork,bind=192.168.64.1 TCP:127.0.0.1:8000
|
|
```
|
|
|
|
### Releasing container memory to macOS
|
|
|
|
The macOS Virtualization framework implements only partial support for memory ballooning, which is a technology that allows virtual machines to dynamically use and relinquish host memory. When you create a container, the underlying virtual machine only uses the amount of memory that the containerized application needs. For example, you might start a container using the option `--memory 16g`, but see that the application is only using 2 gigabytes of RAM in the macOS Activity Monitor.
|
|
|
|
Currently, memory pages freed to the Linux operating system by processes running in the container's VM are not relinquished to the host. If you run many memory-intensive containers, you may need to occasionally restart them to reduce memory utilization.
|
|
|
|
### macOS 15 limitations
|
|
|
|
`container` relies on the new features and enhancements present in the macOS 26 beta. You can run `container` on macOS 15, but you will need to be aware of some user experience and functional limitations. There is no plan to address issues found with macOS 15 that cannot be reproduced in the macOS 26 beta.
|
|
|
|
#### Network isolation
|
|
|
|
The vmnet framework in macOS 15 can only provide networks where the attached containers are isolated from one another. Container-to-container communication over the virtual network is not possible.
|
|
|
|
#### Multiple networks
|
|
|
|
In macOS 15, all containers attach to the default vmnet network. The `container network` commands are not available on macOS 15, and using the `--network` option for `container run` or `container create` will result in an error.
|
|
|
|
#### Container IP addresses
|
|
|
|
In macOS 15, limitations in the vmnet framework mean that the container network can only be created when the first container starts. Since the network XPC helper provides IP addresses to containers, and the helper has to start before the first container, it is possible for the network helper and vmnet to disagree on the subnet address, resulting in containers that are completely cut off from the network.
|
|
|
|
Normally, vmnet creates the container network using the CIDR address 192.168.64.1/24, and on macOS 15, `container` defaults to using this CIDR address in the network helper. To diagnose and resolve issues stemming from a subnet address mismatch between vmnet and the network helper:
|
|
|
|
- Before creating the first container, scan the output of the command `ifconfig` for a bridge interface named similarly to `bridge100`.
|
|
- After creating the first container, run `ifconfig` again, and locate the new bridge interface to determine the container subnet address.
|
|
- Run `container ls` to check the IP address given to the container by the network helper. If the address corresponds to a different network:
|
|
- Run `container system stop` to terminate the services for `container`.
|
|
- Using the macOS `defaults` command, update the default subnet value used by the network helper process. For example, if the bridge address shown by `ifconfig` is 192.168.66.1, run:
|
|
```bash
|
|
defaults write com.apple.container.defaults network.subnet 192.168.66.1/24
|
|
```
|
|
- Run `container system start` to launch services again.
|
|
- Try running the container again and verify that its IP address matches the current bridge interface value.
|