Metadata-Version: 2.1
Name: jaraco.docker
Version: 1.0.1
Summary: Docker facilities
Home-page: https://github.com/jaraco/jaraco.docker
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.5
Provides-Extra: docs
Provides-Extra: testing
Requires-Dist: jaraco.functools
Requires-Dist: jaraco.context
Provides-Extra: docs
Requires-Dist: sphinx; extra == 'docs'
Requires-Dist: jaraco.packaging (>=3.2); extra == 'docs'
Requires-Dist: rst.linker (>=1.9); extra == 'docs'
Provides-Extra: testing
Requires-Dist: pytest (>=3.5); extra == 'testing'
Requires-Dist: pytest-sugar (>=0.9.1); extra == 'testing'
Requires-Dist: collective.checkdocs; extra == 'testing'
Requires-Dist: pytest-flake8; extra == 'testing'

.. image:: https://img.shields.io/pypi/v/jaraco.docker.svg
   :target: https://pypi.org/project/jaraco.docker

.. image:: https://img.shields.io/pypi/pyversions/jaraco.docker.svg

.. image:: https://img.shields.io/travis/jaraco/jaraco.docker/master.svg
   :target: https://travis-ci.org/jaraco/jaraco.docker

.. .. image:: https://img.shields.io/appveyor/ci/jaraco/jaraco.docker/master.svg
..    :target: https://ci.appveyor.com/project/jaraco/jaraco.docker/branch/master

.. .. image:: https://readthedocs.org/projects/jaracodocker/badge/?version=latest
..    :target: https://jaracodocker.readthedocs.io/en/latest/?badge=latest


Usage
=====

To determine if the current environment is running in docker::

	from jaraco.docker import is_docker
	is_docker()


