Metadata-Version: 2.0
Name: sloth-ci.ext.docker-exec
Version: 1.1.1
Summary: Docker executor app extension for Sloth CI
Home-page: https://bitbucket.org/moigagoo/sloth-ci-extensions
Author: Konstantin Molchanov
Author-email: moigagoo@live.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Dist: sloth-ci (>=1.2.3)
Requires-Dist: docker-py
Requires-Dist: awesome-slugify

Docker executor for Sloth CI app extension that replaces the default executor and runs actions inside a given Docker image.

Config params::

    # Use the module sloth-ci.ext.docker_exec.
    module: docker_exec

    # Image name. If missing, slug of the Sloth app listen point is used.
    # image: foo

    # Path to the Docker daemon to connect to. Can point to either a tcp URL or a unix socket. If missing, the client connects to /var/run/docker.sock.
    # base_url: tcp://555.55.55.55:5555 *.

    # Docker API version used on the server. If missing, the latest version is used.
    # version: 1.10

    # Path to the Dockerfile used to build an image if it doesn't exist. If missing, current directory is used.
    # path_to_dockerfile: docker/files

    # Memory limit in MB.
    # memory_limit: 10

    # CPU share in per cent.
    # cpu_share: 5

All config params are optional.


