broad-zoo-34077
07/14/2023, 6:52 PMlittle-author-61621
docker-compose file to expose the postgresql port. You can do this by adding something like:
ports
- 5444:5432
To the postgres service in that file. That will mean the DB is now available on port 5444 from your local host.
Once that’s done you should be able to connect to it with the following settings:
host: localhost
port: 5444
user: postgres
password: postgres
database: cloud_pricinghundreds-activity-29799
07/15/2023, 11:20 AMlittle-author-61621