Metadata-Version: 2.0
Name: draw-compose
Version: 0.0.1
Summary: Render Docker compose files
Home-page: https://github.com/Alexis-benoist/draw-compose
Author: Alexis Benoist
Author-email: alexis.benoist@gmail.com
License: Apache License 2.0
Keywords: docker diagram render
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Database
Requires-Dist: docker-compose
Requires-Dist: pygraphviz

Draw compose
============

Render compose files with one command line!

This project needs graphviz installed.

Simple example
--------------

.. figure:: https://raw.githubusercontent.com/Alexis-benoist/draw-compose/master/fixtures/simple.png?raw=true
   :alt: Simple Example

   Simple example

Classic python example
----------------------

.. figure:: https://raw.githubusercontent.com/Alexis-benoist/draw-compose/master/fixtures/real.png?raw=true
   :alt: Python web app

   Python classic

Install
=======

On OSX:
-------

Install graphviz ``brew install graphviz`` and draw-compose:

::

    $ pip install draw-compose

Use
===

Renders by default ``docker-compose.yml`` in the current folder.

::

    $ draw-compose -o docker.png

Or a specific docker file can be rendered:

::

    $ draw-compose -i fixtures/real.yml -o docker-specific.png


