Baserow x Metabase

I have a self hosted instance of baserow and metabse.
I have a docker of baserow (app and DB) on the same instance
I am tying to connect baserow to metabase but unable to. I cant find the dB username and password. When i check the env vai docker exec -it, i see only the path for the data. There is nothing on the user name and passowrd for the postgres database.
I would need the username, database name and passowrd to connect to the databse from metabase.
Anyone experienced this?

Hi,

Can you check if the username and password are mentioned in the docker-compose.yml file?
By default the database name, username and password is baserow.

Hi,
Credentials are not mentioned in the compose file.I’ll try the default. Thank you.

This is the recommended way of running Baserow using docker-compose for most users.

See Install with Docker // Baserow for more details.

version: “3.4”
services:
baserow:
container_name: baserow
image: baserow/baserow:1.24.2
environment:
BASEROW_PUBLIC_URL: ‘http://localhost
ports:
- “80:80”
- “443:443”
volumes:
- baserow_data:/baserow/data
volumes:
baserow_data: