Re: how to make docker image of your django app

2020-06-17 Thread onlinejudge95
On Wed, Jun 17, 2020 at 7:28 PM Jason Turner wrote: > > https://testdriven.io/blog/dockerizing-django-with-postgres-gunicorn-and-nginx/ > > Also, Will Vincent's book "Django for Professionals" is a good resource. > > On Wed, Jun 17, 2020, 8:51 AM Anirudh choudhary < >

Re: how to make docker image of your django app

2020-06-17 Thread Jason Turner
https://testdriven.io/blog/dockerizing-django-with-postgres-gunicorn-and-nginx/ Also, Will Vincent's book "Django for Professionals" is a good resource. On Wed, Jun 17, 2020, 8:51 AM Anirudh choudhary < anirudhchoudary...@gmail.com> wrote: > I Want to make make a docker image of my Django app

how to make docker image of your django app

2020-06-17 Thread Anirudh choudhary
I Want to make make a docker image of my Django app using PostgreSQL and unicorn. but I can't find any good tutorial for reference please share my link to if you know any good tutorial My Dockerfile now is like FROM python:3.6 ENV PYTHONUNBUFFERED 1 RUN mkdir /app WORKDIR /app COPY