Skip to content

andrew-waters/orchard

Repository files navigation

Banner - Orchard

Orchard is a native (Swift) macOS application for managing containers using Apple's container tooling.

It gives you a desktop experience that complements the container command-line interface.


Quickstart (or other install options):

brew install orchard

container overview screen

Highlights of Containers

  • Made by Apple: Native support, incredible performance and the engineering resources to make it work.
  • Sub second startup times
  • Kernel isolation by design
  • Easier networking - no more port mapping (every container gets its own IP address), networks out of the box

Features

  • Container management: create, start, stop, force stop, delete
  • Image management: pull, delete, search Docker Hub
  • Network and DNS domain management
  • Real-time container stats with sortable columns
  • Sortable container and image lists with persistent preferences
  • Multi-container log viewer with split panes, filtering, and per-container colour coding
  • Container log viewer with search highlighting
  • Builder, kernel and system property management
  • Menu bar integration

image management

Browse, pull, and delete container images. Search Docker Hub directly from the app and inspect image metadata without dropping to the CLI.

container logs

Stream logs from multiple containers side by side. Split panes, filter by text, and use per-container colour coding to keep output readable when debugging across services.

container runtime stats

Monitor live CPU, memory, and network usage for running containers. Sortable columns and persistent preferences make it easy to spot resource hotspots at a glance.

Requirements

Architecture

Orchard communicates with the container daemon primarily through the ContainerAPIClient Swift library (from apple/container) over XPC. This provides typed Swift APIs for container, image, network, and system operations without shelling out to the CLI.

A small number of operations (system start/stop, builders, DNS domain management, system properties) still use the container CLI binary via Foundation.Process, as these are not yet exposed through the XPC API.

Installation

You can install Orchard via homebrew or via a prebuilt release package. You can also download the source and build it yourself!

Homebrew

brew install orchard

Release download

  1. Download the latest release from GitHub Releases
  2. Open the .dmg file and drag Orchard to your Applications folder
  3. Launch Orchard from the Apps directory

Build from Source

git clone https://github.com/andrew-waters/orchard.git
cd orchard
open Orchard.xcodeproj

The project uses Swift Package Manager for dependencies. Xcode will resolve the apple/container package automatically on first build.

License

This project is licensed under the MIT License - see the LICENSE file for details.