Metadata-Version: 2.1
Name: docker-compose-wait
Version: 1.0.0
Summary: Some useful command line utility to wait until all services declared in a docker-compose file are up and running.
Home-page: https://github.com/nicolas-van/docker-compose-wait
Author: Nicolas Vanhoren
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/nicolas-van/docker-compose-wait/issues
Project-URL: Source, https://github.com/nicolas-van/docker-compose-wait
Description: 
        # docker-compose-wait
        
        [![Build Status](https://travis-ci.org/nicolas-van/docker-compose-wait.svg?branch=master)](https://travis-ci.org/nicolas-van/docker-compose-wait) 
        [![PyPI](https://img.shields.io/pypi/v/docker-compose-wait.svg)](https://pypi.python.org/pypi/docker-compose-wait)
        
        
        Some useful script to wait until all services declared in a docker-compose file are up and running.
        
        This script uses the health check mechanism provided since Docker 1.12. If your services have a configured health check, after making a `docker-compose up -d` you can simply call this script to have it wait until all your services health statuses are fixed. If they are all `healthy` it will return `0` if any of them is `unhealthy` (or `Down`) it will return -1.
        
        This script can be useful, as example, in Continuous Integration or other situations when you just want to wait until a stack is deployed before performing other actions.
        
        *Please note this script does not do anything about dependencies startup order. See the [official documentation](https://docs.docker.com/compose/startup-order/) for that problem.*
        
        ## Installation
        
        ```
        pip install docker-compose-wait
        ```
        
        This utility requires Python 2.7 or Python >= 3.3.
        
        ## Usage
        
        It can be as simple as:
        
        ```
        docker-compose-wait
        ```
        
        `docker-compose-wait` behaves like a `docker-compose` sub-command. It will just forward any option to `docker-compose`. The above command will work fine if you previously ran `docker-compose up -d` by referencing the standard `docker-compose.yml` file. If you are using other files for your `docker-compose` configuration just use:
        
        ```
        docker-compose-wait -f <path_to_yaml_file> -f <path_to_other_yaml_file> ...
        ```
        
        ## License
        
        [See the license file](https://github.com/nicolas-van/docker-compose-wait/blob/master/LICENSE.md).
        
        ## Contribution
        
        [See the contribution guide](https://github.com/nicolas-van/docker-compose-wait/blob/master/CONTRIBUTING.md).
        
Keywords: docker container util
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Topic :: System :: Systems Administration
Classifier: License :: OSI Approved :: MIT License
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: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, >=3.3
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
