Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 484 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 484 Bytes
  1. build and run your mysql db

    USE Dockerfile_db a docker build -t django_sql .
    docker run --name app_db -d django_sql

  2. build your django app

    USE Dockerfile docker build -t django_app .

  3. link db and run your djangoo app

    docker run --link app_db:django_sql -p 8000:8000 django_ap

Note: In entrypoint.sh file make python manage.py migrate comment

For more details refer to: https://github.com/chirayurathi/payroll_management_system