I am trying to connect to a remote postgresql database using the bitnami/phppgadmin docker
How to mention the host name
  phppgadmin:
    image: "bitnami/phppgadmin:7.13.0"
    ports:
      - "8080:8080"
      - '443:8443'
    environment:
      PHP_PG_ADMIN_SERVER_HOST: 'xx.xx.xx.xx'
      PHP_PG_ADMIN_SERVER_PORT: 5432
I am trying this, but i am not able to login in the dash board.
I have set the env variables based on the dockage/phppgadmin. BUt bitnami has no such options
 
                        
Every image on Docker Hub has a corresponding page; you can look at https://hub.docker.com/r/bitnami/phppgadmin. That has an "Environment variables" section, which documents:
So use
DATABASE_HOSTas the environment variable name. There is alsoDATABASE_PORT_NUMBERbut you don't need to explicitly set it to the PostgreSQL default value.