Re: How to run an already built django project with docker?

2021-03-29 Thread DJANGO DEVELOPER
okay, thanks On Mon, Mar 29, 2021 at 3:45 PM Kunal Solanke wrote: > Again depends on deploy startegy and but the actual deploy won't be > affected while you are working on your local machine with code cloned from > some version control > > On Mon, Mar 29, 2021, 12:38 DJANGO DEVELOPER > wrote: >

Re: How to run an already built django project with docker?

2021-03-29 Thread Kunal Solanke
Again depends on deploy startegy and but the actual deploy won't be affected while you are working on your local machine with code cloned from some version control On Mon, Mar 29, 2021, 12:38 DJANGO DEVELOPER wrote: > means deploying it on AWS still will not be affected? > > On Mon, Mar 29, 2021

Re: How to run an already built django project with docker?

2021-03-29 Thread DJANGO DEVELOPER
means deploying it on AWS still will not be affected? On Mon, Mar 29, 2021 at 12:07 PM DJANGO DEVELOPER wrote: > oh great. so it will not affect the containerised project. right? > > On Mon, Mar 29, 2021 at 12:03 PM Kunal Solanke > wrote: > >> Yeah its possible to run the project just not insid

Re: How to run an already built django project with docker?

2021-03-29 Thread DJANGO DEVELOPER
oh great. so it will not affect the containerised project. right? On Mon, Mar 29, 2021 at 12:03 PM Kunal Solanke wrote: > Yeah its possible to run the project just not inside a container then, you > will have to run simply outside the container on main host. > Simply with python manage.py runser

Re: How to run an already built django project with docker?

2021-03-29 Thread Kunal Solanke
Yeah its possible to run the project just not inside a container then, you will have to run simply outside the container on main host. Simply with python manage.py runserver😂😂 On Mon, Mar 29, 2021, 12:21 DJANGO DEVELOPER wrote: > I want to ask another question. please ignore my ignorance. > wha

Re: How to run an already built django project with docker?

2021-03-28 Thread DJANGO DEVELOPER
I want to ask another question. please ignore my ignorance. what if I don't use docker up or run, then will it be possible to run the django project? On Mon, Mar 29, 2021 at 11:49 AM DJANGO DEVELOPER wrote: > okay, thank you for the suggestion. > > On Mon, Mar 29, 2021 at 11:45 AM Kunal Solanke

Re: How to run an already built django project with docker?

2021-03-28 Thread DJANGO DEVELOPER
okay, thank you for the suggestion. On Mon, Mar 29, 2021 at 11:45 AM Kunal Solanke wrote: > If you know how to containerize a project you should know how to run that > containarized image, that's why I said to look for articles and anaylyse > the codebase > > docker run or docker-compose up > Th

Re: How to run an already built django project with docker?

2021-03-28 Thread Kunal Solanke
If you know how to containerize a project you should know how to run that containarized image, that's why I said to look for articles and anaylyse the codebase docker run or docker-compose up These are most like going to be used On Mon, Mar 29, 2021, 12:12 DJANGO DEVELOPER wrote: > well, I alre

Re: How to run an already built django project with docker?

2021-03-28 Thread DJANGO DEVELOPER
well, I already know how to containerise a new Django project. but Idk how to run an already containerised Django project. that's what is my question for now. and I am not allowed to share the code. so this was the only way to share my question. so can you help me with this information only? On Mo

Re: How to run an already built django project with docker?

2021-03-28 Thread Kunal Solanke
Thats really very little info, we don't know what's the state or configuration present in your codebase I'd suggest you to search articles with django and docker/docker-compose On Mon, Mar 29, 2021, 12:03 DJANGO DEVELOPER wrote: > Hi, > I have a django project which is already developed by anot

How to run an already built django project with docker?

2021-03-28 Thread DJANGO DEVELOPER
Hi, I have a django project which is already developed by another developer and it is containerised. Now the developer has send the project to me and wants me to do some changes in it? can anyone guide me that how can I run the project using docker again? database is postgresql. -- You received