Can I connect SQLalchemy to my PostgreSQL server on Docker?
I am trying to run databes on Docker container and connect it with my code. This is my connection string: engine = create_engine('postgres+psycopg2://name:password@hostname:port/database_name') As host_name I use IP address of my Linux where I installed docker container. I also checked…