Ioan
Ioan

Reputation: 125

I can't accest self-hosted supabase with pgadmin

I just deployed self-hosted supabase with coolify on a VPS. Everything is good but I can't acces the database with pgadmin from another server. Am I doing something wrong?

hostname: supabasekong-uwg888k.188.245.53.57.sslip.io
port: 5432
maitenance database: postgres
username: postgress
password: PostgreSQL Password from coolify interface

Here is docker compose file from coolify:

https://pastebin.com/QT5qVJrJ

Upvotes: 0

Views: 784

Answers (1)

vCJ
vCJ

Reputation: 21

enter image description here

You'll need to expose port 5432 by adding ports: - '5432:5432' in docker-compose.yml

Upvotes: 1

Related Questions