Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Sysbox Enterprise-Edition repository. The enterprise version of the open-source Sysbox "runc" runtime (empowers rootless containers to run workloads such as Systemd, Docker, Kubernetes, just like VMs).

Notifications You must be signed in to change notification settings

docker-archive/nestybox.sysbox-ee

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sysbox

Contents

Introduction

Sysbox Enterprise Edition (Sysbox-EE) is the enterprise version of the open-source Sysbox container runtime, developed by Nestybox.

Sysbox enables Docker containers to act as virtual servers capable of running software such as Systemd, Docker, and Kubernetes in them, seamlessly and securely. This implies the ability for these containers to run inner containers (nested) while providing strong isolation from the underlying host.

Sysbox-EE uses Sysbox at its core, but adds enterprise-level features around lifecycle, security, efficiency, scalability, and robustness. More on this in the features section.

Features

The table below summarizes the key features of Sysbox Enterprise Edition and compares it to the community edition (Sysbox CE).

sysbox

More on the features below.

If you have questions, you can reach us here.

Videos

We have some sample videos showing Sysbox-EE in action:

Audience

Sysbox-EE is meant for engineers looking to use Sysbox as part of their company's IT operations and/or looking to leverage the enterprise level features it includes (i.e., enhancements over the Sysbox community edition).

Sysbox-EE is offered via a 30-day free trial. You can download and use it for free during this time. Afterwards, we ask that you contact Nestybox for pricing and payment information.

System Containers

We call the containers deployed by Sysbox system containers, to highlight the fact that they can run not just micro-services (as regular containers do), but also system software such as Docker, Kubernetes, Systemd, inner containers, etc.

More on system containers here.

Features Description

Sysbox-EE includes all features of the open-source Sysbox runtime (aka core features), plus enterprise-level features. These are described below.

Core Features

Systemd-in-Docker

  • Run Systemd inside a Docker container easily, without complex container configurations.

  • Enables you to containerize apps that rely on Systemd (e.g., legacy apps).

Docker-in-Docker

  • Run Docker inside a container easily and without unsecure privileged containers.

  • Full isolation between the Docker inside the container and the Docker on the host.

Kubernetes-in-Docker

  • Deploy Kubernetes (K8s) inside containers with proper isolation (no privileged containers), using simple Docker images and Docker run commands (no need for custom Docker images with tricky entrypoints).

  • Deploy directly with docker run commands for full flexibility, or using a higher level tool (e.g., such as kindbox).

Strong container isolation

  • Root user in the system container maps to a fully unprivileged user on the host.

  • The procfs and sysfs exposed in the container are fully namespaced.

  • Programs running inside the system container (e.g., Docker, Kubernetes, etc) are limited to using the resources given to the system container itself.

  • Avoid the need for unsecure privileged containers.

Inner Container Image Preloading

  • You can create a system container image that includes inner container images, with a simple Dockerfile or Docker commit.

Enterprise-level Features

Lifecycle

  • Sysbox-EE package installer and systemd services.

Security

  • Stronger cross-container isolation (Sysbox-EE assigns exclusive user-namespaces user-ID and group-ID mappings to each container).

Performance & Efficiency

  • Sysbox EE includes optimizations for running containers in containers that are not present in the Sysbox community edition. This speeds up container deployment and significantly reduces storage overhead.

  • For example, with Sysbox-EE, a 10-node Kubernetes-in-Docker cluster starts in ~2 minutes and consumes only 1GB of overhead. In contrast, the Sysbox open-source version takes 2 min 40 secs and consumes up to 10GB for this same cluster.

Scalability

  • Higher efficiency means you can launch more system containers per host.

Robustness

  • Sysbox-EE is tested and hardened for operation in production environments.

Feature Prioritization

  • Sysbox-EE offers customers the ability to request and fast-track new features.

Nestybox Support

  • Sysbox-EE includes official Nestybox support for bug fixes, updated, etc.

Download

The latest release of Sysbox-EE is here.

Installation instructions are below.

Supported Distros

Sysbox-EE relies on functionality that is currently only present in Ubuntu Linux.

See the distro compatibility doc for information on what versions of Ubuntu kernels are supported.

We plan to add support for more distros in the future.

Host Requirements

The Linux host on which Sysbox-EE runs must meet the following requirements:

  1. It must have one of the supported Linux distros.

  2. Systemd must be the system's process-manager (the default in the supported distros).

  3. Docker must be installed natively (not with the Docker snap package).

Installing Sysbox-EE

It's very easy:

  1. Download the latest Sysbox-EE package from the release page.

  2. Verify that the checksum of the downloaded file fully matches the expected/published one. For example:

$ sha256sum sysbox_0.2.0-0.ubuntu-focal_amd64.deb
736dba5645549ac0aabe11f29c6410bdbb76e717431a8a241833f20ce8b58a11  sysbox_0.2.0-0.ubuntu-focal_amd64.deb
  1. Stop and eliminate all running Docker containers. Refer to the detailed installation process for information on how to avoid impacting existing containers.
$ docker stop $(docker ps -a -q) && docker container prune -f

If an error is returned, it simply indicates that no existing containers were found.

  1. Install the Sysbox-EE package and follow the installer instructions:
$ sudo apt-get install ./sysbox_0.2.0-0.ubuntu-focal_amd64.deb -y

More information on the installation process can be found here.

If you run into problems during install, see the troubleshooting doc.

Using Sysbox-EE

Once Sysbox-EE is installed, you use it as follows:

$ docker run --runtime=sysbox-runc --rm -it --hostname my_cont debian:latest
root@my_cont:/#

This launches a system container. It looks very much like a regular container, but it's different under the hood.

In this container, you can now run system software such as Systemd, Docker, Kubernetes, etc., seamlessly and securely, just as you would on a physical host or virtual machine.

You can launch inner containers (and even inner privileged containers), with strong isolation from the underlying host. No more complex docker images or docker run commands, and no need for unsecure privileged containers.

The Sysbox Quickstart Guide and the Nestybox Blog Site have many usage examples.

Note that if you omit the --runtime option, Docker will use its default runc runtime to launch regular containers (rather than system containers). It's perfectly fine to run system containers launched with Docker + Sysbox alongside regular Docker containers; they won't conflict and can co-exist side-by-side.

Documentation

We have several documents to help you get started and get the best out of Sysbox-EE:

In addition, the Nestybox blog site has articles on how to use system containers.

Integration with Container Managers & Orchestrators

Though Sysbox is OCI-based (and thus compatible with OCI container managers), it's currently only tested with Docker / containerd.

In particular, we don't yet support using Kubernetes to deploy system containers with Sysbox (though we plan to).

Troubleshooting

Refer to the Troubleshooting document and to the issues in the GitHub site.

Do contact us if you need any help.

Filing Issues

We apologize for any problems in the product or documentation, and we appreciate users filing issues that help us improve Sysbox-EE.

To file issues with Sysbox-EE (e.g., bugs, feature requests, documentation changes, etc.), please refer to the issue guidelines document.

Support

Reach us at our slack channel or at [email protected] for any questions. See our contact info below for more options.

We want your feedback

We love feedback, as it helps us improve Sysbox and set its future direction.

We would much appreciate if you would take a couple of minutes to answer the following survey:

https://www.surveymonkey.com/r/SH8HMGY

Uninstallation

Prior to uninstalling Sysbox, make sure all system containers are removed. There is a simple shell script to do this here.

  1. Uninstall Sysbox binaries plus all the associated configuration and Systemd files:
$ sudo apt-get purge sysbox -y
  1. Remove the sysbox user from the system:
$ sudo userdel sysbox

About Nestybox

Nestybox enhances the power of Linux containers.

We are developing software that enables containers to run any type of workload (not just micro-services), and do so easily and securely.

Our mission is to provide users with a fast, efficient, easy-to-use, and secure alternative to virtual machines for deploying virtual hosts on Linux.

Contact

We are happy to help. You can reach us at:

Email: [email protected]

Slack: Nestybox Slack Workspace

Phone: 1-800-600-6788

We are there from Monday-Friday, 9am-5pm Pacific Time.

Thank You

We thank you very much for using Sysbox. We hope you find it useful.

Your trust in us is very much appreciated.

-- The Nestybox Team

About

Sysbox Enterprise-Edition repository. The enterprise version of the open-source Sysbox "runc" runtime (empowers rootless containers to run workloads such as Systemd, Docker, Kubernetes, just like VMs).

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages