minhng92 / odoo-17-docker-compose

Set up Odoo 17 (released 2023) quickly for development/production using Docker Compose.
101 stars 123 forks source link

What are these environment variables ? #7

Open shibakar opened 5 months ago

shibakar commented 5 months ago
Screenshot 2024-03-21 at 10 03 44 AM
minhng92 commented 5 months ago

Hi @shibakar,

These variables pertain to the connection information for the Postgres database.

HOST represents the hostname for connection, analogous to the Docker service name. USER and PASSWORD correspond to the Postgres user credentials.

shibakar commented 5 months ago

@minhng92 how can I change the password of odoo17@2023 I have already added a db management tool

 pgadmin:
    image: dpage/pgadmin4

    environment:
      - PGADMIN_DEFAULT_EMAIL=xxxxxxxxxxx
      - PGADMIN_DEFAULT_PASSWORD=xxxxxxxx
    ports:
      - "5050:80"
    restart: always