Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set PostgreSQL version to 14.5 #115

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose/.env
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ADEMPIERE_GITHUB_ARTIFACT=https://github.com/adempiere/adempiere/releases/downlo


# SQL Database
POSTGRES_IMAGE="postgres:13"
POSTGRES_IMAGE="postgres:14.5"
POSTGRES_CONTAINER_NAME=${COMPOSE_PROJECT_NAME}.postgresql
POSTGRES_HOSTNAME=${CLIENT_NAME}.postgresql
POSTGRES_USER="postgres"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/env_template.env
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ADEMPIERE_GITHUB_ARTIFACT=https://github.com/adempiere/adempiere/releases/downlo


# SQL Database
POSTGRES_IMAGE="postgres:13"
POSTGRES_IMAGE="postgres:14.5"
POSTGRES_CONTAINER_NAME=${COMPOSE_PROJECT_NAME}.postgresql
POSTGRES_HOSTNAME=${CLIENT_NAME}.postgresql
POSTGRES_USER="postgres"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/postgresql/postgres.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:13
FROM postgres:14.5


# Command "wget" will be used for downloading the standard Adempiere Database in
Expand Down