Тёмный

Docker Compose | How to configure PostgreSQL or MySQL database with Python Django 

Very Academy
Подписаться 66 тыс.
Просмотров 37 тыс.
50% 1

Опубликовано:

 

5 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 54   
@acronproject
@acronproject Месяц назад
Thanks so mch Mr. Zanda
@sotak77
@sotak77 2 месяца назад
Awesome tutorial, thank you for all the good information
@akhillshetty2140
@akhillshetty2140 3 года назад
Zander, can you make a video with Django API + React Frontend Docker Package/Deployment? That would be a great addition to this series!!
@veryacademy
@veryacademy 3 года назад
Hey - I keep telling people I will and not get around to it!
@greykor140
@greykor140 3 года назад
@@veryacademy I want this too!
@shreyashsrivastava5467
@shreyashsrivastava5467 3 года назад
Again Love from India ❤️
@veryacademy
@veryacademy 3 года назад
👍
@edecilcorrea3450
@edecilcorrea3450 Год назад
Thank you very much for this tutorial. You are a very good teacher.
@arek7198
@arek7198 Год назад
Thanks a lot for very good tutorial
@giannifed
@giannifed 3 года назад
thank you very much
@veryacademy
@veryacademy 3 года назад
Thank you 🙏
@rangabharath4253
@rangabharath4253 3 года назад
Awesome as always 👍😀
@veryacademy
@veryacademy 3 года назад
Thank you! Cheers!
@benjaminagyekum7283
@benjaminagyekum7283 3 года назад
Always releasing new interesting videos
@veryacademy
@veryacademy 3 года назад
Glad you think so!
@SoloPython
@SoloPython 3 года назад
Please teach us how to do *Docker + Django + React/Vue* much love!!
@veryacademy
@veryacademy 3 года назад
No problem - will do a docker React then docker django react
@SoloPython
@SoloPython 3 года назад
@@veryacademy i love you!
@devjeff3192
@devjeff3192 3 года назад
For those who are getting error: django.db.utils.operationalerror: could not translate host name "db" to address: temporary failure in name resolution You should consider adding the addiotional configs to your docker-compose file: db: image: postgres ports: - 5432:5432 volumes: - pgdata:/var/lib/postgresql/data - pgconf:/etc/postgresql - pglog:/var/log/postgresql environment: - POSTGRES_DB=postgres - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres container_name: postgres_db volumes: pgdata: driver: local pgconf: driver: local pglog: driver: local
@veryacademy
@veryacademy 3 года назад
Thank you 🙏
@filipk2834
@filipk2834 2 года назад
Thank you!
@GoziePO
@GoziePO 11 месяцев назад
Thanks! I'm not sure why that fixed it though
@dennissanchez5171
@dennissanchez5171 2 года назад
Helpful, thanks!
@txcing9296
@txcing9296 2 года назад
amazing thank you
@xRezNex
@xRezNex 2 года назад
Excellent. Gained a sub
@veryacademy
@veryacademy 2 года назад
Welcome aboard! Thank you!
@naheliegend5222
@naheliegend5222 3 года назад
What about production? Do you have the real data stored on the machine, where the app is running? In this case in ./data/db?
@mrmuranga
@mrmuranga 3 года назад
awesome....Thanks for the trouble
@veryacademy
@veryacademy 3 года назад
No worries! 👍
@dodokwak
@dodokwak 2 года назад
Thank you.
@RishiSaikia
@RishiSaikia 3 года назад
Where does the /var/lib/PostgreSQL/data come from?
@kaushalkhokhar6282
@kaushalkhokhar6282 3 года назад
Excellent, But I am getting some error which can't be resolved by me. Can you help me on that.... django.db.utils.OperationalError: could not translate host name "db" to address: Temporary failure in name resolution
@veryacademy
@veryacademy 3 года назад
Hi Kaushal, difficult to fully diagnose without seeing the code. Presume you have named the db service db in the docker file. Best way for me to help you and anyone else if to start a stack overflow post and put the link in here. stackoverflow.com/questions/41573313/docker-compose-with-django-could-not-translate-host-name-db-to-address-name-o
@Arjun147gtk
@Arjun147gtk Год назад
Getting an error as below: docker endpoint for "default" not found Please help.
@sabarinathjv4829
@sabarinathjv4829 2 года назад
Those who face pg_config executable not found. add below line inside Dockerfile RUN pip install --upgrade pip RUN pip3 install -r requirements.txt
@veryacademy
@veryacademy 2 года назад
Could you make an update request on GitHub I will merge it?
@phaniophrero8007
@phaniophrero8007 2 года назад
Hi , anyone with this error ? : raise ImproperlyConfigured("Error loading psycopg2 module: %s" % e) django-container2 | django.core.exceptions.ImproperlyConfigured: Error loading psycopg2 module: No module named 'psycopg2'. (UPDATE Fix) I had to delete my previous app image and create it again so it could install the psycopg2-binary package.
@sergiaguilar1
@sergiaguilar1 2 года назад
Why do you need to create another container for every service?
@veryacademy
@veryacademy 2 года назад
You dont need to. However, once things start to scale then you find that might be the most effective way to work. Also it is easier to manage services this way.
@sergiaguilar1
@sergiaguilar1 2 года назад
@@veryacademy Ok got it good tutorial tough
@ayeshrodrigo2197
@ayeshrodrigo2197 3 года назад
Is there a way to connect these hosted DBs on Docker with MySql Workbench or PG Admin installed on Host PC for monitoring purposes?
@veryacademy
@veryacademy 3 года назад
Thanks Ayesh I have a running order from other members requests. 6. Deploy to Heroku 7. Django + React 8. Deploy to Digital Ocean 9. PostGres PGAdmin setup
@shivan2418
@shivan2418 3 года назад
Is there a way to do the database migration that does not involve doing it manually via bash every time?
@donotlook6048
@donotlook6048 3 года назад
What do you mean? I'm learning Docker too but when you want to do a migration in your local machine you gotta do it through your OS command prompt. In this case as you are running the django app in a Linux OS container you need to do it via Bash?
@apurvashirbhate5724
@apurvashirbhate5724 3 года назад
It is supposed to run both ways with or without docker. Right?
@veryacademy
@veryacademy 3 года назад
Point is here we can put Postgres and MySQL in a container so that you don't have to installed them on your computer.
@apurvashirbhate5724
@apurvashirbhate5724 3 года назад
@@veryacademySo it is not supposed to run without docker .Right?
@apurvashirbhate5724
@apurvashirbhate5724 3 года назад
@@veryacademy So it will give error without docker ?Right?
@apurvashirbhate5724
@apurvashirbhate5724 3 года назад
@@veryacademy How to check if the data is added into a table or not
@veryacademy
@veryacademy 3 года назад
A docker container requires docker installed
@Kos37376
@Kos37376 Год назад
i dont have 'data' directoty((
Далее
ДО ВСТРЕЧИ НА РАЗГОНЕ
52:11
Просмотров 453 тыс.
Средневековый киборг
00:39
Просмотров 534 тыс.
How to create a great dev environment with Docker
29:55
Prepare a Django app for Deployment using Docker
39:10
Django & Postgres with Docker Best Practices
11:11
Просмотров 16 тыс.
How to Dockerize Django in 5 minutes
36:00
Просмотров 31 тыс.
ДО ВСТРЕЧИ НА РАЗГОНЕ
52:11
Просмотров 453 тыс.