Metadata-Version: 2.1
Name: isdocker
Version: 0.0.1
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
        
        > 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');
        
        ```
        
        ## Get Help
        
        There are few ways to get help:
        
         1. Please [post questions on Stack Overflow](https://stackoverflow.com/questions/ask). You can open issues with questions, as long you add a link to your Stack Overflow question.
        
         2. For bug reports and feature requests, open issues.
        
         3. For direct and quick help, you can [email me](mailto://me@yoginth.com).
        
        ## How to contribute
        Have an idea? Found a bug? See [how to contribute][contributing].
        
        Thanks!
        
        ## License
        
        [MIT][license]
        
        [LICENSE]: https://mit.yoginth.com
        [contributing]: /CONTRIBUTING.md
        
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
