Back to list
schpet

apple-container

by schpet

teaching claude new tricks via skills

0🍴 0📅 Jan 23, 2026

SKILL.md


name: apple-container description: Apple's native container runtime for macOS. Use this skill instead of Docker when running on macOS with Apple silicon. The container CLI provides OCI-compatible container management optimized for Apple silicon.

Apple Container

Overview

Apple Container is a native container platform for macOS that runs Linux containers as lightweight virtual machines. It should be used instead of Docker on macOS with Apple silicon.

The container CLI is installed and available. It produces and consumes OCI-compatible container images, so images work with any standard container registry.

Requirements

  • Mac with Apple silicon
  • macOS 26 or later

Quick Start

# Start the system service (required once)
container system start

# Run a container
container run -it ubuntu:latest /bin/bash

# Build an image
container build -t myimage .

# List containers
container list

# Stop a container
container stop <container-id>

Common Commands

CommandDescription
container runRun a container
container buildBuild an image from Dockerfile
container listList containers
container stopStop running containers
container execRun command in running container
container logsFetch container logs
container image listList images
container system startStart the system service
container system stopStop the system service

Docker Compatibility

The container CLI uses familiar Docker-like syntax:

Docker CommandContainer Command
docker runcontainer run
docker buildcontainer build
docker pscontainer list
docker stopcontainer stop
docker execcontainer exec
docker logscontainer logs
docker imagescontainer image list

Troubleshooting

Builder Freezes

The buildkit builder can freeze, often due to insufficient memory. To fix:

  1. Find and kill the frozen builder process:

    ps aux | grep buildkit
    kill -9 <pid>
    
  2. Restart with more resources:

    container builder start --cpus 6 --memory 8g
    

References

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon