Giter Club home page Giter Club logo

youki's Introduction

youki: A container runtime in Rust

logo

rusty container

youki is an implementation of runtime-spec in Rust, referring to runc.

Motivation

Here is why we are writing a new container runtime in Rust.

  • Rust is one of the best languages to implement oci-runtime. Many container tools are written in Go. It's all very nice products. However, the container runtime requires the use of system calls, which requires a bit of special handling when implemented in Go. This is too tricky(e.g. namespaces(7), fork(2)); with Rust, it's not that tricky and you can use system calls. Also, unlike C, Rust provides the benefit of memory management.
  • The development of railcar has been suspended. This project was very nice but is no longer being developed. This project is inspired by it.
  • We have fun implementing this. In fact, this may be the most important.

Status of youki

youki is not at the practical stage yet. However, it is getting closer to practical use, running with docker and passing all the default tests provided by opencontainers/runtime-rools. youki demo

Getting Started

Local build is only supported on linux. For other platforms, please use the devcontainer that we prepared.

Requires

  • Rust(See here)
  • Docker

Building

$ git clone [email protected]:utam0k/youki.git
$ cd youki
$ cargo build

Usage

Starting the docker daemon.

$ dockerd --experimental --add-runtime="youki=$(pwd)/target/x86_64-unknown-linux-gnu/debug/youki"

You can use youki in a different terminal to start the container.

$ docker run -it --rm --runtime youki busybox

Integration test

You can use opencontainers/runtime-rools to do integration testing used in CI. See it's documentation for details.

Design and implementation of youki

TBD

Features

  • run with docker
  • pivot root
  • mount devices
  • namespace
  • capabilities
  • rlimits
  • cgroups v1
    • devices
    • cpu
    • cpuacct
    • cpuset
    • memory
    • freezer
    • net_cls
    • blkio
    • perf_event
    • net_prio
    • hugetlb
    • pids
    • rdma
  • hooks

Contribution

This project welcomes your PR and issues. For example, refactoring, adding features, correcting English, etc. If you need any help, you can contact me on Twitter.

youki's People

Contributors

aoki avatar succie avatar utam0k avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.