package mirage-types

  1. Overview
  2. Docs

Description

Tags

org:mirage org:xapi-project

Published: 09 Aug 2017

README

MirageOS

MirageOS is a library operating system that constructs unikernels for secure, high-performance network applications across a variety of cloud computing and mobile platforms. Code can be developed on a traditional OS such as Linux or MacOS X, and then compiled into a fully-standalone, specialised unikernel that runs under the Xen or KVM hypervisors as well as lightweight hypervisors like BSD's bhyve. Xen and KVM power many public clouds; MirageOS unikernels are currently running on Amazon's Elastic Compute Cloud and Google Compute Engine, and maybe others!

The most up-to-date documentation can be found at the homepage. The site is self-hosted, and is itself a useful example. Simpler skeleton applications are also available online.

This repository

This repository includes:

  • a command-line tool to create and deploy applications with MirageOS; and

  • in types/, a library of type signatures that compliant applications use.

There are several diverse backends in MirageOS that require rather specialised build steps (from Xen to KVM unikernels), and this complexity is wrapped up in the tool.

To work with mirage, you'll need to either install prerequisites locally or use the Docker image.

Local install

You will need the following:

  • a working OCaml compiler (4.03.0 or higher).

  • the OPAM source package manager (1.2.2 or higher).

  • an x86_64 or armel Linux host to compile Xen kernels, or FreeBSD, OpenBSD or MacOS X for the userlevel version.

Docker image

There is a maintained Docker image at unikernel/mirage. You can also use the Dockerfile in this repository:

docker build -t mirage .
docker run -v <your-source>:/src opam config exec -- mirage

Using mirage

There are two stages to using mirage:

  • a configure phase where necessary code is generated and dependencies are determined.

  • an optional depends phase where OPAM package dependencies are satisfied.

  • a build phase where the compiler and any support scripts are run.

You can find documentation, walkthroughs and tutorials over on the MirageOS website. The install instructions are a good place to begin!

Dependencies (15)

  1. mirage-channel >= "3.0.0" & < "4.0.0"
  2. mirage-kv >= "1.0.0" & < "2.0.0"
  3. mirage-fs >= "1.0.0" & < "3.0.0"
  4. mirage-net >= "1.0.0" & < "2.0.0"
  5. mirage-block >= "1.0.0" & < "2.0.0"
  6. mirage-stack >= "1.0.0" & < "1.3.0"
  7. mirage-protocols >= "1.0.0" & < "1.4.0"
  8. mirage-console >= "2.2.0" & < "3.0.0"
  9. mirage-flow >= "1.2.0" & < "2.0.0"
  10. mirage-random >= "1.0.0" & < "2.0.0"
  11. mirage-clock >= "1.2.0" & < "2.0.0"
  12. mirage-time >= "1.0.0" & < "2.0.0"
  13. mirage-device >= "1.0.0" & < "2.0.0"
  14. jbuilder >= "1.0+beta10"
  15. ocaml

Dev Dependencies

None

Used by (4)

  1. conan
  2. conan-cli
  3. docteur-unix < "0.0.3"
  4. mirage-types-lwt >= "3.0.0" & < "3.2.0"

Conflicts

None