A toolkit for building secure, portable and lean operating systems for containers
Go to file
Rolf Neugebauer 3ba9d8064b YAML: Update standard yml files to use the new rngd image
Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
2017-04-24 18:41:27 +01:00
.github Change docker/linuxkit to linuxkit/linuxkit 2017-04-17 18:13:28 -05:00
base pkg: Convert rngd to a multi-stage build 2017-04-24 18:41:27 +01:00
blueprints Add a blueprints directory 2017-04-18 09:48:34 -05:00
docs Move summit notes to reports/ and include date in filename 2017-04-24 10:18:22 -07:00
examples YAML: Update standard yml files to use the new rngd image 2017-04-24 18:41:27 +01:00
kernel Fix link. Cosmetic. 2017-04-21 20:56:18 -05:00
pkg pkg: Convert rngd to a multi-stage build 2017-04-24 18:41:27 +01:00
projects Updated okernel README.md 2017-04-20 15:52:27 +01:00
reports Move summit notes to reports/ and include date in filename 2017-04-24 10:18:22 -07:00
scripts makefile: Use moby run qemu 2017-04-24 15:17:01 +01:00
src Split build and push, and remove push code from run 2017-04-24 17:12:05 +01:00
test YAML: Update standard yml files to use the new rngd image 2017-04-24 18:41:27 +01:00
tools tools: Move toybox to ./tools and use a multi-stage build 2017-04-24 18:41:27 +01:00
vendor src: Use hyperkit from the the moby org 2017-04-24 10:53:59 +01:00
.gitignore Merge pull request #1476 from riyazdf/make-cleaner 2017-04-04 17:23:12 +01:00
.mailmap Add AUTHORS file and script 2017-04-17 10:30:28 -05:00
AUTHORS Add AUTHORS file and script 2017-04-17 10:30:28 -05:00
CONTRIBUTING.md Change docker/linuxkit to linuxkit/linuxkit 2017-04-17 18:13:28 -05:00
LICENSE add license, and files for opensourcing 2017-04-16 18:23:23 -05:00
linuxkit.yml YAML: Update standard yml files to use the new rngd image 2017-04-24 18:41:27 +01:00
MAINTAINERS Change docker/linuxkit to linuxkit/linuxkit 2017-04-17 18:13:28 -05:00
Makefile Split build and push, and remove push code from run 2017-04-24 17:12:05 +01:00
NOTICE add license, and files for opensourcing 2017-04-16 18:23:23 -05:00
poule.yml add basic poule configuration 2017-04-17 14:13:04 -05:00
README.md Merge pull request #1665 from papanikge/patch-1 2017-04-19 15:35:56 -05:00
vendor.conf src: Use hyperkit from the the moby org 2017-04-24 10:53:59 +01:00

LinuxKit

LinuxKit, a toolkit for building custom minimal, immutable Linux distributions.

  • Secure defaults without compromising usability
  • Everything is replaceable and customisable
  • Immutable infrastructure applied to building Linux distributions
  • Completely stateless, but persistent storage can be attached
  • Easy tooling, with easy iteration
  • Built with containers, for running containers
  • Designed for building and running clustered applications, including but not limited to container orchestration such as Docker or Kubernetes
  • Designed from the experience of building Docker Editions, but redesigned as a general-purpose toolkit
  • Designed to be managed by external tooling, such as Infrakit or similar tools
  • Includes a set of longer-term collaborative projects in various stages of development to innovate on kernel and userspace changes, particularly around security

Getting Started

Build the moby tool

Simple build instructions: use make to build. This will build the customisation tool in bin/. Add this to your PATH or copy it to somewhere in your PATH eg sudo cp bin/moby /usr/local/bin/. Or you can use sudo make install.

If you already have go installed you can use go get -u github.com/linuxkit/linuxkit/src/cmd/moby to install the moby tool. You can use go get -u github.com/linuxkit/linuxkit/src/cmd/infrakit-instance-hyperkit to get the hyperkit infrakit tool.

Once you have built the tool, use moby build linuxkit.yml to build the example configuration, and bin/moby run linuxkit to run locally. Use halt to terminate on the console.

Build requirements:

  • GNU make
  • GNU or BSD tar (not busybox tar)
  • Docker

Booting and Testing

You can use moby run <name> to execute the image you created with moby build <name>.yml. This will use a suitable backend for your platform or you can choose one, for example VMWare. See moby run --help.

Some platforms do not yet have moby run support, so you can use ./scripts/qemu.sh moby-initrd.img moby-bzImage moby-cmdline or ./scripts/qemu.sh mobylinux-bios.iso which runs qemu in a Docker container.

make test or make test-hyperkit will run the test suite

There are also docs for booting on Google Cloud; ./bin/moby run --gcp <name>.yml should work if you specified a GCP image to be built in the config.

More detailed docs will be available shortly, for running both single hosts and clusters.

Building your own customised image

To customise, copy or modify the linuxkit.yml to your own file.yml or use one of the examples and then run moby build file.yml to generate its specified output. You can run the output with moby run file.

The yaml file specifies a kernel and base init system, a set of containers that are built into the generated image and started at boot time. It also specifies what formats to output, such as bootable ISOs and images for various platforms.

Yaml Specification

The yaml format specifies the image to be built:

  • kernel specifies a kernel Docker image, containing a kernel and a filesystem tarball, eg containing modules. The example kernels are built from kernel/
  • init is the base init process Docker image, which is unpacked as the base system, containing init, containerd, runc and a few tools. Built from pkg/init/
  • onboot are the system containers, executed sequentially in order. They should terminate quickly when done.
  • services is the system services, which normally run for the whole time the system is up
  • files are additional files to add to the image
  • outputs are descriptions of what to build, such as ISOs.

For a more detailed overview of the options see yaml documentation.

Architecture and security

There is an overview of the architecture covering how the system works.

There is an overview of the security considerations and direction covering the security design of the system.

Roadmap

This project was extensively reworked from the code we are shipping in Docker Editions, and the result is not yet production quality. The plan is to return to production quality during Q2 2017, and rebase the Docker Editions on this open source project.

This is an open project without fixed judgements, open to the community to set the direction. The guiding principles are:

  • Security informs design
  • Infrastructure as code: immutable, manageable with code
  • Sensible, secure, and well-tested defaults
  • An open, pluggable platform for diverse use cases
  • Easy to use and participate in the project
  • Built with containers, for portability and reproducibility
  • Run with system containers, for isolation and extensibility
  • A base for robust products

Development reports

There are weekly development reports summarizing work carried out in the week.

FAQ

See FAQ.

Released under the Apache 2.0 license.