From 4988a2aa9a995d68d0f92e9f5298a53eca336b4d Mon Sep 17 00:00:00 2001 From: greg Date: Tue, 16 Feb 2021 23:07:29 +0100 Subject: [PATCH] updated postgres readme docs --- README.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 265d712..6a9dcf8 100644 --- a/README.md +++ b/README.md @@ -38,15 +38,14 @@ First start the database server: $ docker network create confluencenet $ docker run --name postgres -d \ --network confluencenet \ - -e 'POSTGRES_USER=jira' \ - -e 'POSTGRES_PASSWORD=jellyfish' \ - -e 'POSTGRES_ENCODING=UTF8' \ - -e 'POSTGRES_COLLATE=C' \ - -e 'POSTGRES_COLLATE_TYPE=C' \ - postgres + -e 'POSTGRES_USER=confluencedb' \ + -e 'POSTGRES_PASSWORD=confluence \ + -e 'POSTGRES_DB=confluencedb' \ + postgres:10 ~~~~ -> This is the blacklabelops postgres image. +> (!) Make sure to use database version supported with Confluence version - +>https://confluence.atlassian.com/doc/supported-platforms-207488198.html Secondly start Confluence with a link to postgres: @@ -97,7 +96,7 @@ $ docker run --name postgres -d \ -e 'POSTGRES_DB=confluencedb' \ -e 'POSTGRES_USER=confluencedb' \ -e 'POSTGRES_PASSWORD=jellyfish' \ - postgres:9.4 + postgres:10 ~~~~ > This is the official postgres image.