Metadata-Version: 2.1
Name: isdocker
Version: 1.0.0
Summary: Check if the process is running inside a Docker container
Home-page: https://yoginth.com
Author: Yoginth
Author-email: me@yoginth.com
License: UNKNOWN
Project-URL: Source, https://gitlab.com/yoginth/isdocker
Description: ## isDocker [![pipeline status](https://gitlab.com/yoginth/isdocker/badges/master/pipeline.svg)](https://gitlab.com/yoginth/isdocker/commits/master)
        
        > Check if the process is running inside a Docker container
        
        ## Demo
        
        Demo on [Repl.it](https://repl.it/@yoginth/isdocker)
        
        ## Install
        
        ```
        $ pip install isdocker
        ```
        
        ## Usage
        
        ```python
        from isdocker import isDocker
        
        if (isDocker()):
            print('Running inside a Docker container');
        else:
            print('Running outside the Docker container');
        ```
        
        ## License
        
        [MIT][LICENSE] Yoginth
        
        [LICENSE]: https://mit.yoginth.com
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Environment :: Plugins
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
