Skip to content

Commit

Permalink
Remove OracleXE
Browse files Browse the repository at this point in the history
This was only used for Boot applications < 3.2.0, which are no longer
supported.
  • Loading branch information
mhalbritter committed May 27, 2024
1 parent 6966cb5 commit c2b11a0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public SimpleDockerServiceResolver() {
this.dockerServices.put("mysql", mysql());
this.dockerServices.put("neo4j", neo4j());
this.dockerServices.put("oracleFree", oracleFree());
this.dockerServices.put("oracleXe", oracleXe());
this.dockerServices.put("pgvector", pgvector());
this.dockerServices.put("postgres", postgres());
this.dockerServices.put("pulsar", pulsar());
Expand Down Expand Up @@ -121,13 +120,6 @@ private static DockerService oracleFree() {
.build();
}

private static DockerService oracleXe() {
return DockerService.withImageAndTag("gvenzl/oracle-xe")
.website("https://hub.docker.com/r/gvenzl/oracle-xe")
.ports(1521)
.build();
}

private static DockerService pgvector() {
return DockerService.withImageAndTag("pgvector/pgvector:pg16")
.website("https://hub.docker.com/r/pgvector/pgvector")
Expand Down
7 changes: 0 additions & 7 deletions start-site/src/test/resources/compose/oracle-xe.yaml

This file was deleted.

0 comments on commit c2b11a0

Please sign in to comment.