Skip to content

Commit

Permalink
build(deps): update postgres to v16.0-alpine3.18 in regtest-setup-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Oct 11, 2023
1 parent c9c40da commit 5677f0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function create_user_and_database() {
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL
CREATE ROLE $database WITH LOGIN ENCRYPTED PASSWORD '$database' VALID UNTIL 'infinity';
CREATE DATABASE $database;
GRANT ALL PRIVILEGES ON DATABASE $database TO $database;
ALTER DATABASE $database OWNER TO $database;
EOSQL
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
postgres:
restart: always
container_name: regtest_db
image: postgres:14.5-alpine
image: postgres:16.0-alpine3.18
volumes:
- postgres-data:/postgresql_data
- ./data/pg/init:/docker-entrypoint-initdb.d/
Expand Down

0 comments on commit 5677f0d

Please sign in to comment.