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

Update Dockerfile.rhel8 to fix the postgresql upgrade issue from v12 to v13. #451

Closed
wants to merge 1 commit into from
Closed
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
1 change: 1 addition & 0 deletions 13/Dockerfile.rhel8
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ FROM ubi8/s2i-core
# PostgreSQL administrative account

ENV POSTGRESQL_VERSION=13 \
POSTGRESQL_PREV_VERSION=12 \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The valid code for fixing this is here: https://github.com/sclorg/postgresql-container/blob/master/src/Dockerfile#L14

Please do the following steps.

  1. fix file src/Dockerfile
  2. commit the change.
  3. The sources are generated automatically.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated this file and created the new PR #456. Thanks for pointing out.

HOME=/var/lib/pgsql \
PGUSER=postgres \
APP_DATA=/opt/app-root
Expand Down