[{"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":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":22,"archived":23,"fork":23,"defaultBranch":24,"hasWiki":23,"hasPages":25,"topics":26,"createdAt":10,"pushedAt":10,"updatedAt":27,"readmeContent":28,"aiSummary":29,"trendingCount":16,"starSnapshotCount":16,"syncStatus":30,"lastSyncTime":31,"discoverSource":32},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",31609,882,135,229,0,2494,4825,5163,9759,43.84,"Apache License 2.0",false,"main",true,[],"2026-06-12 02:01:28","\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` 是一个用于在Mac上创建和运行Linux容器的工具，通过轻量级虚拟机实现。它使用Swift编写，并针对Apple芯片进行了优化。核心功能包括支持OCI兼容的容器镜像，允许用户从标准容器注册表中拉取和运行镜像，并可将构建的镜像推送到这些注册表中。此外，`container` 依赖于Containerization Swift包来处理底层容器、镜像及进程管理。适用于需要在macOS环境下进行容器开发与测试的场景，尤其是对性能有较高要求的应用开发工作。",2,"2026-06-11 03:08:10","top_language"]