Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
Moby
Moby, a toolkit for building custom minimal, immutable Linux distributions.
- Good, secure defaults included
- 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
Simple build instructions: use make to build.
This will build the Moby customisation tool and a Moby initrd image.
Build requirements
- GNU
make - GNU or BSD
tar(notbusyboxtar) - Docker
Booting and Testing
make qemuwill boot up a sample Moby in qemu in a container- on OSX:
make hyperkitwill boot up Moby in hyperkit make testormake hyperkit-testwill run the test suite- There are also docs for booting on Google Cloud
- More detailed docs will be available shortly, for running single hosts and clusters.
Customise
To customise, copy or modify the moby.yaml to your own file.yaml or use on of the examples and then run ./bin/moby file.yaml to
generate its specified output. You can run the output with ./scripts/qemu.sh or ./scripts/hyperkit.sh, or on other
platforms.
Yaml Specification
The Yaml format is loosely based on Docker Compose:
kernelspecifies a kernel Docker image, containing a kernel and a filesystem tarball, eg containing modules.mobylinux/kernelis built fromkernel/initis the baseinitprocess Docker image, which is unpacked as the base system, containinginit,containerd,runcand a few tools. Built frombase/init/systemare the system containers, executed sequentially in order. They should terminate quickly when done.daemonis the system daemons, which normally run for the whole timefilesare additional files to add to the imageoutputsare descriptions of what to build, such as ISOs.
For the images, you can specify the configuration much like Compose, with some changes, eg capabilities must be specified in full, rather than add and drop, and
there are no volumes only binds.
The config is liable to be changed, and there are missing features; full documentation will be available shortly.