Skip to content

Bessouat40/docker-postgres-sqlalchemy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Connection between Postgres database and python (SQLAlchemy)

This project is an exemple of how you can deploy with Docker a PostGreSQL database and access it with python.

Technologies

  • Docker in order to dockerize our code. This make easier the deployment of our services

  • PostGreSQL as database because it's largely used by firms

  • SqlAlchemy for SQL querys

PostGreSQL database

We deploy our PostGreSQL database. It can be visualize with some tools like DbVisualizer.

USAGE

We run our services with this command :

docker-compose build && docker-compose up db -d

Wait for the database to be available and ready to accept connections...

Then :

docker-compose up api # need to add a healthcheck