You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To Build Image
# docker build -t url:urlshortner .
To up the container in detached mode using docker-compose
# docker-compose up -d
# docker-compose up -d --build ## to rebuild the container
To execute the container in bash mode
# docker exec -it urlcontainer bash
To makemigration
python manage.py makemigrations
To migrate
python manage.py migrate
To run the gunicorn server instead of wsgi(django inbuilt)
# gunicorn -c gunicorn_config.py SHORTENURL.wsgi:application