Hi, guys. Anybody knows how to connect to postgres...
# general
e
Hi, guys. Anybody knows how to connect to postgres database in container? I tried with Data Grip, but connections failed. postgres configs
Copy code
postgresd:
    image: postgres:9.6
    ports:
      - "5432:5432"
    environment:
      - POSTGRES_USER=kratos
      - POSTGRES_PASSWORD=secret
      - POSTGRES_DB=kratos
    networks:
      - intranet
and DG settings in attachment. It always asks for password and couldn't connect. I guess I should make some set up for connecting to Docker containers.