Metadata-Version: 1.1
Name: robotframework-docker
Version: 1.2.1
Summary: A Robot Framework Docker Library
Home-page: https://github.com/vogoltsov/robotframework-docker
Author: Vitaly Ogoltsov
Author-email: vitaly.ogoltsov@me.com
License: Apache License 2.0
Description: Short Description
        -----------------
        
        `Robot Framework`_ library for working with ``docker`` and
        ``docker-compose``.
        
        Installation
        ------------
        
        Installation using pip
        ~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code:: bash
        
           pip3 install robotframework-docker
        
        
        Installation from sources
        ~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code:: bash
        
           python3 setup.py install
        
        Example
        -------
        
        .. code:: robotframework
        
           *** Settings ***
           Documentation           DockerComposeLibrary tests.
           Library                 DockerComposeLibrary
           Library                 RequestsLibrary
           Test Setup              Docker Compose Up
           Test Teardown           Docker Compose Down
        
        
           *** Test Cases ***
           Start Apache Web Server
               ${service} =        Get Exposed Service  httpd  80
               Log To Console      http has started and is available at http://${service.host}:${service.port}
        
        License
        -------
        
        Apache License 2.0
        
        .. _Robot Framework: https://robotframework.org/
Keywords: testing testautomation robotframework docker docker-compose
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Framework :: Robot Framework :: Library
