My postgres yaml
part looking like this:
postgres:
container_name: 'postgres'
image: postgres:10.1
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=root
- POSTGRES_DB=myids
ports:
- "5432:5432"
networks:
- app-network
Then when I am logging in with that credentials using HeidiSQL I cant see my database:
Any ideas?
Update thanks to this answer I managed to find my database https://dba.stackexchange.com/a/1304 using this select:
SELECT datname FROM pg_database
WHERE datistemplate = false;
Now the question why HeidiSQL won't show that?
We have to specify the database name in the connection manager, only then will it display the selected database. Please refer to the images below...
There is no provision to view all the databases in PostgreSQL in HeidiSQL, but for MySQL the database name field is optional.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With