Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyperhq/hyperd
HyperContainer Daemon
https://github.com/hyperhq/hyperd
containers hypervisor
Last synced: 11 days ago
JSON representation
HyperContainer Daemon
- Host: GitHub
- URL: https://github.com/hyperhq/hyperd
- Owner: hyperhq
- License: apache-2.0
- Archived: true
- Created: 2015-05-25T06:26:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-11-29T08:14:19.000Z (almost 6 years ago)
- Last Synced: 2024-09-22T09:19:09.549Z (about 2 months ago)
- Topics: containers, hypervisor
- Language: Go
- Homepage: http://www.hypercontainer.io
- Size: 22.8 MB
- Stars: 1,982
- Watchers: 91
- Forks: 196
- Open Issues: 50
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- my-awesome - hyperd - HyperContainer Daemon (Project/Product)
- awesome-starred - hyperhq/hyperd - HyperContainer Daemon (others)
README
[![Build Status](https://travis-ci.org/hyperhq/hyperd.svg?branch=master)](https://travis-ci.org/hyperhq/hyperd)
HyperContainer - Hypervisor-agnostic Docker Runtime
====> This repo contains two parts: the daemon of HyperContainer `hyperd` and the CLI`hyperctl`.
## What is HyperContainer?
**HyperContainer is a hypervisor-agnostic technology that allows you to run Docker images on plain hypervisor**.
![](https://trello-attachments.s3.amazonaws.com/5551c49246960a31feab3d35/1515x947/5265a9f72b589ef5dbf8b372b718c43e/Pasted_image_at_2016_04_16_07_33_PM.png)
## Why HyperContainer?
-----------**HyperContainer combines the best from both worlds: VM and Container**.
| - | Container | VM | HyperContainer |
|---|---|---|---|
| Isolation | Weak, shared kernel | Strong, HW-enforced | Strong, HW-enforced |
| Portable | Yes, but kernel dependent sometimes | No, hypervisor dependent | Yes, hypervisor agnostic and portable image |
| Boot | Fast, sub-second | Slow, tens of seconds | Fast, sub-second |
| Performance | Great | OK| Good, minimal resource footprint and overhead |
| Immutable | Yes | No, configuration management required | Yes, only kernel+image |
| Image Size| Small, MBs | Big, GBs | Small, MBs |
| Compatibility | No, need new tools | Great, everything just works | Good, it is still a "Machine", much less changes |
| Mature | Not yet | Production ready, SDN, SDS, LiveMigration, etc. | Yes, just plug-&-play|
| ROI| Rebuild everything with container | - | Reuse your virtual infrastructure |> **BYOK* = bring your own kernel
## Requirements
- QEMU 2.0 or later (QEMU 2.6 or later for ARM64 Architecture)
- Xen 4.5 and VT enabled host (for Xen support)## Installation
Ensure you are running Linux (kernel 3.8 or later) and have QEMU (version 2.0 or later) installed.
Then download the [binaries](http://download.hypercontainer.io/) and install them (hyper-container and hyperstart) directly.For the detail of installation, please refer to [the documents](https://docs.hypercontainer.io/get_started/install/linux.html).
For information on using the command line, just type `hyperctl`. You may use
`hyperctl --help` for detailed information on any specific command.## Build From Source
Clone hyperd in GoPath
> mkdir -p ${GOPATH}/src/github.com/hyperhq
> cd ${GOPATH}/src/github.com/hyperhq
> git clone https://github.com/hyperhq/hyperd.git hyperdAnd make sure you have `go` (>= 1.7) , `device-mapper-devel`, and `autotools`, go into the `hyperd` dir
> ./autogen.sh
> ./configure
> makeThen you can find the binaries `hyperd` daemon and `hyperctl` cmdline tool in current directory. Before running those commands, a config file needs to be placed at `/etc/hyper/config` directory, and you can find a sample under `${TOP}/package/dist/etc/hyper/config`. `Kernel` and `Initrd` are required for starting the hyperd daemon, you can find those files from [HyperStart](https://github.com/hyperhq/hyperstart) project.
## Find out more
* [Documentation](http://docs.hypercontainer.io)
* [Get Started](http://docs.hypercontainer.io/get_started/index.html)
* [Reference](http://docs.hypercontainer.io/reference/index.html)
* [Release Notes](http://docs.hypercontainer.io/release_notes/latest.html)## Contact Us
Found a bug, want to suggest a feature, or have a question?
[File an issue](https://github.com/hyperhq/hyperd/issues). When reporting a bug, please include which version of hyperd you are running, as shown by `hyperctl --version`.* Twitter: [@hyper_sh](https://twitter.com/hyper_sh)
* Blog: [https://hyper.sh/blog.html](https://blog.hyper.sh/)
* Slack: [#hyper](https://slack.hyper.sh/) (The IRC has been migrated to slack.)