skip to Main Content

Can't connect adminer to postgres server in docker – Debian

I'm trying to run latest version of PostgreSQL 15.2 (Debian 15.2-1.pgdg110+1) using docker-compose # Use postgres/pswd user/password credentials version: '3.1' services: db: image: postgres restart: unless-stopped environment: POSTGRES_PASSWORD: pswd POSTGRES_DB: auth_db ports: - 5432:5432 volumes: - ./postgres:/var/lib/postgresql/data adminer: image: adminer…

VIEW QUESTION
Back To Top
Search