Suite of the Docker and Kubernetes applications
Go to file
archyufa d22210d335 Readme minor updates
Fixed URLs for networking
Minor updates

Change-Id: I2c78c83eedb0e1b6457d4d223e9cc404ae4534c8
(cherry picked from commit f3d6166f3b)
2016-09-28 17:35:04 +00:00
Applications Fix wrong usage of join() 2016-09-21 14:48:35 +03:00
DockerInterfacesLibrary Add missed parts of providing versioning to stable/mitaka 2016-09-26 15:25:03 +00:00
DockerStandaloneHost Fix path in readme for DIB 2016-09-21 14:49:13 +03:00
Kubernetes Readme minor updates 2016-09-28 17:35:04 +00:00
doc Adding initial doc hierarchy for building with sphinx 2016-09-21 14:49:04 +03:00
tests Add k8s app test for per-commit job 2016-09-21 14:48:50 +03:00
tools Add linters tests 2016-09-21 14:49:24 +03:00
.gitignore Adding initial doc hierarchy for building with sphinx 2016-09-21 14:49:04 +03:00
.gitreview Add initial version of script for zipping packages 2016-09-21 14:48:24 +03:00
README.rst [Kubernetes] Kubernetes documentation 2015-12-03 16:48:42 +03:00
setup.cfg Adding setup.|(py,cfg) for building docs 2016-09-23 07:38:59 +00:00
setup.py Adding setup.|(py,cfg) for building docs 2016-09-23 07:38:59 +00:00
test-requirements.txt Adding tox env for docs 2016-09-21 14:49:08 +03:00
tox.ini Add linters tests 2016-09-21 14:49:24 +03:00

README.rst

Docker support for Murano

Docker is an open-source project that automates the deployment of applications inside software containers. Docker containers could be run either by the Docker itself or by container management platforms that built on top of the Docker and provide extra value to schedule and manage containers on multiple hosts.

This folder contains needed abstractions and applications to develop and run Docker applications:

  • DockerInterfaceLibrary: library that defines a framework for building Docker applications. It provides set of common interfaces and data structures that are used by all Docker applications and Docker hosting services. If you want to develop your own Docker application this is a good place to start. See DockerInterfaceLibrary/README.rst for more details.
  • DockerStandaloneHost: a regular Docker host. Docker containers are run on a dedicated VM running docker software (require pre-built image with docker and murano-agent).
  • Kubernetes: an open source container cluster manager by Google. It allows to schedule and run Docker applications on multiple clustered nodes. Application both installs Kubernetes and provides capabilities to run Docker applications similar to DockerStandaloneHost. See Kubernetes/README.rst for more details.
  • Applications: Examples of some of the most popular Docker applications.