Skip to content

Commit a0cdcee

Browse files
author
Michael Bryson
authored
US593021: Updated to run on Java 17 (#8)
1 parent 1605a51 commit a0cdcee

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
---
44

5-
A Docker container with PostgreSQL 14 and the Java 11 runtime environment installed.
5+
A Docker container with PostgreSQL 14 and the Java 17 runtime environment installed.
66

7-
The image is built from the postgres docker image postgres:14-alpine in the official Docker repository [here](https://hub.docker.com/_/postgres/). The configuration and run instructions for the base image are also applicable to this image. OpenJDK JRE 11 is installed as part of the container build.
7+
The image is built from the postgres docker image postgres:14-alpine in the official Docker repository [here](https://hub.docker.com/_/postgres/). The configuration and run instructions for the base image are also applicable to this image. OpenJDK JRE 17 is installed as part of the container build.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
<groupId>com.github.cafapi</groupId>
3737
<artifactId>java-postgres-container</artifactId>
38-
<version>3.1.0-SNAPSHOT</version>
38+
<version>4.0.0-SNAPSHOT</version>
3939
<packaging>pom</packaging>
4040

4141
<licenses>
@@ -130,7 +130,7 @@
130130
<from>${dockerHubPublic}/library/postgres:14-alpine</from>
131131
<optimise>false</optimise>
132132
<runCmds>
133-
<runCmd>${withWebProxy} apk --update add openjdk11-jre</runCmd>
133+
<runCmd>${withWebProxy} apk --update add openjdk17-jre</runCmd>
134134
</runCmds>
135135
</build>
136136
<run>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
#### Version Number
44
${version-number}
55

6+
#### Breaking Changes
7+
- US593021: Updated to run on Java 17
8+
69
#### New Features
10+
- None
711

812
#### Known Issues
13+
- None

0 commit comments

Comments
 (0)