Skip to content

Commit 42c7847

Browse files
Mateusz Czeladkaclaude
authored andcommitted
chore: upgrade PostgreSQL from 17.6 to 18.0
Updates PostgreSQL to version 18.0 across all docker-compose environments (mainnet, preprod, and integration tests) to leverage the latest features and improvements in PostgreSQL 18. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 03be01a commit 42c7847

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.env.IntegrationTest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ NETWORK=devkit
44
PROTOCOL_MAGIC=42
55

66
## Postgres image
7-
PG_VERSION_TAG=REL_17_6
7+
PG_VERSION_TAG=REL_18_0
88

99
## Yaci image
1010
YACI_VERSION=0.10.5

.env.docker-compose

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PROTOCOL_MAGIC=764824073
77
# mainnet 764824073, preprod 1, preview 2, devkit 42
88

99
## Postgres image
10-
PG_VERSION_TAG=REL_17_6
10+
PG_VERSION_TAG=REL_18_0
1111

1212
## Postgres variables
1313
DB_NAME=rosetta-java

.env.docker-compose-preprod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PROTOCOL_MAGIC=1
77
# mainnet 764824073, preprod 1, preview 2, devkit 42
88

99
## Postgres image
10-
PG_VERSION_TAG=REL_17_6
10+
PG_VERSION_TAG=REL_18_0
1111

1212
## Postgres variables
1313
DB_NAME=rosetta-java

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ RUN apt update && apt install -y \
199199
&& update-locale LANG=en_US.UTF-8 \
200200
&& apt clean
201201

202-
ENV PG_VERSION_TAG=REL_17_6
202+
ENV PG_VERSION_TAG=REL_18_0
203203

204204
WORKDIR /usr/src
205205

docker/dockerfiles/postgres/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN apt update && apt install -y \
1818
&& update-locale LANG=en_US.UTF-8 \
1919
&& apt clean
2020

21-
ENV PG_VERSION_TAG=REL_17_6
21+
ENV PG_VERSION_TAG=REL_18_0
2222
ENV PG_DATA="/var/lib/postgresql/data"
2323
ENV PG_BIN="/usr/local/pgsql/bin"
2424
ENV PATH="$PG_BIN:$PATH"

0 commit comments

Comments
 (0)