Metadata-Version: 2.0
Name: marina
Version: 0.0.1
Summary: marina manages docker instances
Home-page: https://github.com/mmerickel/marina
Author: Michael Merickel
Author-email: michael@merickel.org
License: UNKNOWN
Keywords: docker devops deploy build orchestration
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Programming Language :: Python
Classifier: Topic :: System :: Installation/Setup
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: System :: Systems Administration
Requires-Dist: docker-py
Requires-Dist: pyyaml
Requires-Dist: setuptools
Requires-Dist: subparse

marina
======

Marina is a tool for building docker images with a focus on separating
compile-time dependencies from run-time dependencies in order to keep
the shipped images small and secure.

Usage
-----

::

  marina -vvv build examples/shootout

App Config
----------

::

  name: dummy

  compile:
    base_image: ubuntu:14.04
    commands:
      - dd if=/dev/urandom of=/srv/dummy bs=50kB count=1
    files:
      - /srv/dummy

  run:
    base_image: ubuntu:14.04


