[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-6663":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":16,"stars30d":17,"stars90d":16,"forks30d":16,"starsTrendScore":16,"compositeScore":18,"rankGlobal":10,"rankLanguage":10,"license":19,"archived":20,"fork":20,"defaultBranch":21,"hasWiki":20,"hasPages":22,"topics":23,"createdAt":10,"pushedAt":10,"updatedAt":24,"readmeContent":25,"aiSummary":26,"trendingCount":16,"starSnapshotCount":16,"syncStatus":27,"lastSyncTime":28,"discoverSource":29},6663,"container","apple\u002Fcontainer","apple","A tool for creating and running Linux containers using lightweight virtual machines on a Mac. It is written in Swift, and optimized for Apple silicon. ","https:\u002F\u002Fapple.github.io\u002Fcontainer\u002Fdocumentation\u002F",null,"Swift",47440,1583,184,271,0,8206,79.6,"Apache License 2.0",false,"main",true,[],"2026-07-22 04:00:29","\u003Ch1>\n  \u003Cimg alt=\"Containerization logo\" src=\".\u002Fassets\u002FContainerization-Logo.png\" width=\"70\" valign=\"middle\">\n  &nbsp;container\n\u003C\u002Fh1>\n\n`container` is a tool that you can use to create and run Linux containers as lightweight virtual machines on your Mac. It's written in Swift, and optimized for Apple silicon.\n\nThe tool consumes and produces [OCI-compatible container images](https:\u002F\u002Fgithub.com\u002Fopencontainers\u002Fimage-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.\n\n`container` uses the [Containerization](https:\u002F\u002Fgithub.com\u002Fapple\u002Fcontainerization) Swift package for low-level container, image, and process management.\n\n![introductory movie showing some basic commands](.\u002Fdocs\u002Fassets\u002Flanding-movie.gif)\n\n## Get started\n\n### Requirements\n\nYou need a Mac with Apple silicon to run `container`. To build it, see the [BUILDING](.\u002FBUILDING.md) document.\n\n`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.\n\n### Initial install\n\nDownload the latest signed installer package for `container` from the [GitHub release page](https:\u002F\u002Fgithub.com\u002Fapple\u002Fcontainer\u002Freleases).\n\nTo install the tool, double-click the package file and follow the instructions. Enter your administrator password when prompted, to give the installer permission to place the installed files under `\u002Fusr\u002Flocal`.\n\nStart the system service with:\n\n```bash\ncontainer system start\n```\n\n### Upgrade or downgrade\n\nFor 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 `\u002Fusr\u002Flocal\u002Fbin`).\n\nIf you're upgrading or downgrading, you must stop your existing `container`:\n\n```bash\ncontainer system stop\n```\n\nTo upgrade to the latest release, simply run the command below:\n\n```bash\n\u002Fusr\u002Flocal\u002Fbin\u002Fupdate-container.sh\n```\n\nTo downgrade, you must uninstall your existing `container` (the `-k` flag keeps your user data, while `-d` removes it):\n\n```bash\n\u002Fusr\u002Flocal\u002Fbin\u002Funinstall-container.sh -k\n\u002Fusr\u002Flocal\u002Fbin\u002Fupdate-container.sh -v 0.3.0\n```\n\nStart the system service with:\n\n```bash\ncontainer system start\n```\n\n### Uninstall\n\nUse the `uninstall-container.sh` script (installed to `\u002Fusr\u002Flocal\u002Fbin`) to remove `container` from your system. To remove your user data along with the tool, run:\n\n```bash\n\u002Fusr\u002Flocal\u002Fbin\u002Funinstall-container.sh -d\n```\n\nTo retain your user data so that it is available should you reinstall later, run:\n\n```bash\n\u002Fusr\u002Flocal\u002Fbin\u002Funinstall-container.sh -k\n```\n\n## Next steps\n\n- Take [a guided tour of `container`](.\u002Fdocs\u002Ftutorial.md) by building, running, and publishing a simple web server image.\n- Learn how to [use various `container` features](.\u002Fdocs\u002Fhow-to.md).\n- Read a brief description and [technical overview](.\u002Fdocs\u002Ftechnical-overview.md) of `container`.\n- Browse the [full command reference](.\u002Fdocs\u002Fcommand-reference.md).\n- [Build and run](.\u002FBUILDING.md) `container` on your own development system.\n- View the project [API documentation](https:\u002F\u002Fapple.github.io\u002Fcontainer\u002Fdocumentation\u002F).\n\n## Contributing\n\nContributions to `container` are welcome and encouraged. Please see our [main contributing guide](https:\u002F\u002Fgithub.com\u002Fapple\u002Fcontainerization\u002Fblob\u002Fmain\u002FCONTRIBUTING.md) for more information.\n\n## Project Status\n\nThe 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.\n","container 是一个专为 Apple Silicon Mac 设计的轻量级容器运行时工具，通过轻量虚拟机技术在 macOS 上安全、高效地运行 Linux 容器。它完全兼容 OCI 标准，支持拉取、构建、推送和运行标准容器镜像，并深度集成 macOS 26 的虚拟化与网络新特性。项目采用 Swift 编写，无需 Docker Desktop 或 Linux 虚拟机层，启动快、资源占用低。适用于本地开发、CI\u002FCD 流水线中的 macOS 原生容器测试、以及需要严格隔离的 Linux 应用沙箱场景。",2,"2026-07-08 03:09:58","top_language"]