JeanMaximilienCadic / dockerich

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool




CodeHow To UseDockerPythonEnv

alt text

Code structure

from importlib.metadata import entry_points
from setuptools import setup
from dockerich import __version__

setup(
    name="dockerich",
    version=__version__,
    short_description="dockerich",
    long_description="dockerich",
    packages=[
        "dockerich",
    ],
    include_package_data=True,
    package_data={'': ['*.yml']},
    entry_points={
        "console_scripts":[
            "dockerich=dockerich:__main__"
            ]
    },
    url='https://github.com/JeanMaximilienCadic/dockerich.git',
    license='MIT',
    author='CADIC Jean-Maximilien',
    python_requires='>=3.6',
    install_requires=[r.rsplit()[0] for r in open("requirements.txt")],
    author_email='contact@cadic.jp',
    description='dockerich',
    platforms="linux_debian_10_x86_64",
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
    ]
)

How to use

To clone and run this application, you'll need Git and https://docs.docker.com/docker-for-mac/install/ and Python installed on your computer. From your command line:

Install the wheel:

# Clone this repository and install the code
git clone https://github.com/JeanMaximilienCadic/dockerich.git

# Go into the repository
cd dockerich

PythonEnv

pip install dist/*.whl

Docker

cd scripts && ./compile

To test

dockerich

About


Languages

Language:Python 94.1%Language:Shell 4.9%Language:Dockerfile 1.0%