umoci

umoci

轻量级OCI容器镜像管理工具

umoci是OCI镜像规范的开源参考实现,提供容器镜像的创建、修改和操作功能。它设计轻量且通用,可作为大型系统的基础。作为命令行工具,umoci支持镜像解包、重打包和配置修改等操作。KIWI和Open Build Service等项目采用umoci构建发布容器镜像。作为OCI项目的一部分,umoci采用Apache 2.0许可证。

umociOCI容器镜像开源项目Go语言Github
<!-- This comment is necessary to get Hugo to parse this page properly. For whatever reason, it thinks files that start with HTML tags are not Markdown documents (even though this is not actually the case). See <https://github.com/gohugoio/hugo/issues/7296>. --> <p align="center"> <a href="https://umo.ci/" alt="Project Website"> <img src="https://umo.ci/umoci-black.png" alt="umoci" height="130"/></a> </p> <!-- This hack is necessary to work around the fact we cannot conditionally hide these images in Hugo (see <https://github.com/gohugoio/hugo/issues/7398>). Thankfully, GitHub won't render <div> tags, so we can abuse that to hide the badges on the umo.ci website while still showing them in the GitHub README. --> <div style="display: none"> <p align="center"> <a href="https://github.com/opencontainers/umoci/releases/latest" alt="Latest Release"> <img src="https://img.shields.io/github/v/release/opencontainers/umoci"/></a> <a href="https://pkg.go.dev/github.com/opencontainers/umoci" alt="Go Documentation"> <img src="https://img.shields.io/badge/godoc-unstable-red?logo=go"/></a> <a href="https://github.com/opencontainers/umoci/blob/master/COPYING" alt="License: Apache-2.0"> <img src="https://img.shields.io/github/license/opencontainers/umoci"/></a> <br/> <a href="https://github.com/opencontainers/umoci/actions/workflows/ci.yml" alt="Build Status"> <img src="https://github.com/opencontainers/umoci/actions/workflows/ci.yml/badge.svg"/></a> <a href="https://codecov.io/gh/opencontainers/umoci" alt="Code Coverage"> <img src="https://img.shields.io/codecov/c/gh/opencontainers/umoci?logo=codecov"/></a> <a href="https://app.netlify.com/sites/umoci/deploys" alt="Netlify Status"> <img src="https://img.shields.io/netlify/78e5d3da-f8b5-4a8e-8c7b-9e1effb23f2f?logo=netlify"/></a> <br/> <a href="https://bestpractices.coreinfrastructure.org/projects/1084" alt="CII Best Practices"> <img src="https://bestpractices.coreinfrastructure.org/projects/1084/badge"/></a> <a href="https://goreportcard.com/report/github.com/opencontainers/umoci" alt="Go Report Card"> <img src="https://goreportcard.com/badge/github.com/opencontainers/umoci"/></a> <a href="https://observatory.mozilla.org/analyze/umo.ci" alt="Mozilla Observatory Grade"> <img src="https://img.shields.io/mozilla-observatory/grade-score/umo.ci?label=umo.ci&logo=mozilla"/></a> <br/> <a href="https://github.com/opencontainers/umoci/releases" alt="Release Downloads"> <img src="https://img.shields.io/github/downloads/opencontainers/umoci/total"/></a> <a href="https://zenodo.org/badge/latestdoi/72283469" alt="DOI Badge"> <img src="https://zenodo.org/badge/72283469.svg"/></a> <a href="https://matrix.to/#/#opencontainers:matrix.org" alt="Matrix Room"> <img src="https://img.shields.io/matrix/opencontainers:matrix.org?logo=matrix"/></a> </p> <hr/> </div>

umoci modifies Open Container images.

umoci (pronounced /uːmoˈʨi/ or approximately "oo-mo-tchee") is a reference implementation of the OCI image specification and provides users with the ability to create, manipulate, and otherwise interact with container images. It is designed to be as small and unopinonated as possible, so as to act as a foundation for larger systems to be built on top of. The primary method of using umoci is as a command-line tool:

Extract image "leap" from image directory "opensuse" and place it inside an OCI runtime-spec bundle at the path "bundle". % umoci unpack --image opensuse:leap bundle Make some changes to the root filesystem ("bundle/rootfs"). % runc run -b bundle ctr ctr-sh$ zypper install -y foobarbaz ctr-sh$ exit % echo foo > bundle/rootfs/README Create a new image (called "new-leap") in the image directory "opensuse", based on "leap" which contains the changes made to "bundle/rootfs". % umoci repack --image opensuse:new-leap bundle Modify the configuration of the "new-leap" image to specify a new author. % umoci config --image opensuse:new-leap \ > --author="Aleksa Sarai <cyphar@cyphar.com>" \ > --config.workingdir="/var/www" Garbage-collect any unreferenced blobs in the image directory "opensuse". % umoci gc --layout opensuse

See the quick start guide for more accessible documentation about how to use umoci. Notable users of umoci include:

  • KIWI, which uses umoci to support building both base and derived container images which are then converted to Docker images.
  • The Open Build Service, which uses umoci (through KIWI) to support building and publishing container images from its built-in container registry. The openSUSE project has been using this method of building container images in production since 2016.
  • Stacker, which uses umoci as its core building primitive, and is used by Cisco to build container images for some of their appliances since 2018.
  • LXC provides support for OCI container images through an OCI template, which is implemented as a shell script that wraps umoci. The fact that a container runtime with a vastly different model to OCI container runtimes can make use of umoci is further evidence of its unopinionated design.

If you wish to provide feedback or contribute, read the CONTRIBUTING.md for this project to refresh your knowledge about how to submit good bug reports and patches. Information about how to privately submit security disclosures is also provided.

Install

Pre-built binaries can be downloaded from umoci's releases page. As umoci's builds are reproducible, a cryptographic checksum file is included in the release assets. All of the assets are also signed with a release key, whose fingerprint is:

pub rsa4096 2016-06-21 [SC] [expires: 2031-06-18] 5F36C6C61B5460124A75F5A69E18AA267DDB8DB4 uid [ultimate] Aleksa Sarai <asarai@suse.com> uid [ultimate] Aleksa Sarai <asarai@suse.de> sub rsa4096 2016-06-21 [E] [expires: 2031-06-18]

umoci is also available from several distributions' repositories:

To build umoci from the source code, a simple make should work on most machines, as should make install.

Usage

umoci has a subcommand-based command-line. For more detailed information, see the generated man pages (which you can build with make docs). You can also read through our quick start guide.

<!-- TODO: Put the man pages on the website... -->
% umoci --help NAME: umoci - umoci modifies Open Container images USAGE: umoci [global options] command [command options] [arguments...] VERSION: 0.4.6 AUTHOR: Aleksa Sarai <asarai@suse.com> COMMANDS: raw advanced internal image tooling help, h Shows a list of commands or help for one command image: config modifies the image configuration of an OCI image unpack unpacks a reference into an OCI runtime bundle repack repacks an OCI runtime bundle into a reference new creates a blank tagged OCI image tag creates a new tag in an OCI image remove, rm removes a tag from an OCI image stat displays status information of an image manifest insert insert content into an OCI image layout: gc garbage-collects an OCI image's blobs init create a new OCI layout list, ls lists the set of tags in an OCI layout GLOBAL OPTIONS: --verbose alias for --log=info --log value set the log level (debug, info, [warn], error, fatal) (default: "warn") --help, -h show help --version, -v print the version

Releases and Stability

We regularly publish new releases, with each release being given a unique identifying version number (as governed by Semantic Versioning (SemVer)). Information about previous releases including the list of new features, bug fixes and resolved security issues is available in the change log.

Note that while umoci is currently usable as a Go library (and we do have several users of the Go APIs), the API is explicitly considered unstable until umoci 1.0 is released. However, the umoci CLI API is considered to be stable despite umoci not being a 1.0 project.

Governance

umoci is an Open Container Initative project, and is thus bound by the OCI Code of Conduct and the OCI Charter. In addition, the umoci project has its own specific governance rules which determine how changes are accepted into the project, how maintainers are added or removed, how releases are proposed and released, and how the governance rules are changed. In the case of any conflict which cannot be resolved by this project's governance rules, the OCI Technical Oversight Board may step in to help resolve the issue.

<!-- TODO: Add proper governance documents. -->

History

umoci was originally developed in 2016 by Aleksa Sarai as part of the openSUSE project, and was donated to the Open Container Initiative as a reference implementation of the OCI image specification in mid-2020.

License

umoci is licensed under the terms of the Apache 2.0 license.

umoci: Umoci Modifies Open Containers' Images Copyright (C) 2016-2020 SUSE LLC Copyright (C) 2018 Cisco Systems Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Citation

If you have used umoci in your research, please cite it like you would any other useful software. Here is a handy BibTex citation.

@misc{umoci,
	title = {umoci - Standalone Tool For Manipulating Container Images},
	author = {Aleksa Sarai et al.},
	year = {2016},
	url = {https://umo.ci/},
	doi = {http://dx.doi.org/10.5281/zenodo.1188474},
}

Thank

编辑推荐精选

TRAE编程

TRAE编程

AI辅助编程,代码自动修复

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

AI工具TraeAI IDE协作生产力转型热门
蛙蛙写作

蛙蛙写作

AI小说写作助手,一站式润色、改写、扩写

蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。

AI辅助写作AI工具蛙蛙写作AI写作工具学术助手办公助手营销助手AI助手
问小白

问小白

全能AI智能助手,随时解答生活与工作的多样问题

问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。

热门AI助手AI对话AI工具聊天机器人
Transly

Transly

实时语音翻译/同声传译工具

Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。

讯飞智文

讯飞智文

一键生成PPT和Word,让学习生活更轻松

讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。

AI办公办公工具AI工具讯飞智文AI在线生成PPTAI撰写助手多语种文档生成AI自动配图热门
讯飞星火

讯飞星火

深度推理能力全新升级,全面对标OpenAI o1

科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。

热门AI开发模型训练AI工具讯飞星火大模型智能问答内容创作多语种支持智慧生活
Spark-TTS

Spark-TTS

一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型

Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。

咔片PPT

咔片PPT

AI助力,做PPT更简单!

咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。

讯飞绘文

讯飞绘文

选题、配图、成文,一站式创作,让内容运营更高效

讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。

热门AI辅助写作AI工具讯飞绘文内容运营AI创作个性化文章多平台分发AI助手
材料星

材料星

专业的AI公文写作平台,公文写作神器

AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。

下拉加载更多