Dockerize your django project


License
GPL-3.0
Install
pip install duckiter==0.1.9

Documentation


Duckiter

Duckiter will Automatically dockerize your Django projects.

compatibility : - python above version 3.7 - linux, MacOS, windows

Installation :

clone project:

    pip install duckiter

Usage :

Duckiter has two individual steps: 1- initialize Dockerfile 2- build image from created Dockerfile

To initialize Dockerfile (step 1) :

in terminal hit to your project directory ( where manage.py is in root ):

    duckiter --init

This will create Dockerfile and config.cfg in the root of the project, and you can manipulate those files before Duckiter creates an image. If you are ok with our configurations, you can just pass '-build' to immediately build the image right after creating the Dockerfile.

    duckiter --init -build

To build image (step 2) :

To build an image from the Dockerfile that has been created in the last step, you need enter:

    duckiter main.py -build

this will look for config.cfg in project directory and then build the image.