Skip to main content

PGadmin Intall PGadmin الجزء السادس

PGadmin Intall     PGadmin     الجزء السادس  

=====================================   

docker run --name some-pgadmin4 \
           -p 5050:5050 \
           -d fenglc/pgadmin4





Then you can hit http://localhost:5050 or http://host-ip:5050 in your browser.


POSTGRES_PASSWORD  odoo
POSTGRES_USER  odoo


 user: [email protected]
 password: admin



التثبيت عن طريق الاستاك تابع الخلقة رقم 7

version: "3.3"
services:
  pgadmin:
    image: dpage/pgadmin4:2023-04-07-1
    restart: always
    environment:
      PGADMIN_DEFAULT_EMAIL: [email protected]
      PGADMIN_DEFAULT_PASSWORD: hhGFd!!2222Vca
      PGADMIN_LISTEN_PORT: 5050
      #SCRIPT_NAME: /pgadmin4
    ports:
    - "5050:5050"
    network_mode: "bridge"
    volumes:
    - pgadmin:/var/lib/pgadmin

volumes:
  pgadmin:

Leave a Reply