Metadata-Version: 1.1
Name: docker-executor
Version: 0.1.11
Summary: Docker executor with pipework and consul support
Home-page: https://github.com/javicacheiro/docker-executor
Author: Javier Cacheiro
Author-email: bigdata-dev@listas.cesga.es
License: MIT
Description: Credits
        -------
        
        Uses the wonderful pipework script of jpetazzo: https://github.com/jpetazzo/pipework
        
        Installation
        ------------
        ::
            cd docker-executor
            virtualenv venv
            . venv/bin/activate
            pip install --editable .
        
        Requires
        --------
        docker-executor reads the configuration from a K/V store.
        
        It requires the following keys:
        
        Node object:
        
        - name: name to give to the docker container
        - clustername: name of the cluster/service to which this docker belongs
        - docker_image
        - docker_opts
        - disks: Disk object list (see below)
        - networks: Network object list (see below)
        - tags: ('master', 'yarn')
        - status: pending, running, failed, stopped
        - host: docker engine where the container is running
        
        Network object:
        
        - bridge
        - device
        - address
        - netmask
        - gateway
        
        Disk object:
        
        - origin
        - destination
        - mode
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
