From 011d54ac4ee519253b5256c3af44966031b69b3a Mon Sep 17 00:00:00 2001 From: michaelb <56658194+mzb2xeo@users.noreply.github.com> Date: Mon, 17 Nov 2025 05:53:26 -0800 Subject: [PATCH] Revise PostgreSQL settings and credentials in README Updated PostgreSQL configuration and credentials in README. --- README.md | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index da38e5ae6..6ca680a02 100644 --- a/README.md +++ b/README.md @@ -32,40 +32,39 @@ Check out the getting started guide if this is the first time you've used Peppermint: ``` -version: "3.1" - services: peppermint_postgres: container_name: peppermint_postgres image: postgres:latest restart: always - ports: - - 5432:5432 volumes: - - pgdata:/var/lib/postgresql/data + - pgdata_live:/var/lib/postgresql # Updated for Postgres 18+ environment: - POSTGRES_USER: peppermint - POSTGRES_PASSWORD: 1234 + POSTGRES_USER: peppermint_7g3x + POSTGRES_PASSWORD: P3pp3rM1nt!x9zQ POSTGRES_DB: peppermint - + ports: + - 5432:5432 peppermint: container_name: peppermint image: pepperlabs/peppermint:latest ports: - 3000:3000 - - 5003:5003 + - 3001:5003 + # If running via Docker on a hypervisor, enable DNS. + # dns: + # - 1.1.1.1 + # - 8.8.8.8 restart: always depends_on: - peppermint_postgres environment: - DB_USERNAME: "peppermint" - DB_PASSWORD: "1234" - DB_HOST: "peppermint_postgres" - SECRET: 'peppermint4life' - + DB_USERNAME: peppermint_7g3x + DB_PASSWORD: P3pp3rM1nt!x9zQ + DB_HOST: peppermint_postgres + SECRET: peppermint4life volumes: - pgdata: - + pgdata_live: null ``` Once this is completed then you can go to your server-ip:3000 which was added to the compose file and login.