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

chore(deps): update gvenzl/oracle-free docker tag to v23.5 #1131

Merged
merged 7 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ services:
APP_USER: THE
ORACLE_RANDOM_PASSWORD: yes
platform: "linux/amd64"
image: gvenzl/oracle-free:23.3-slim-faststart
image: gvenzl/oracle-free:23.5-slim-faststart
ports: [1521:1521]
volumes: [/opt/oracle/oradata]
healthcheck:
Expand Down
1 change: 0 additions & 1 deletion legacy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ RUN mvn versions:set -DnewVersion=${APP_VERSION} -f pom.xml -DskipTests -Dtests.
# Build
RUN mvn -Pnative native:compile


### Deployer
FROM gcr.io/distroless/java-base:nonroot AS deploy
ARG PORT=9000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@
import java.time.Duration;
import java.util.UUID;
import org.testcontainers.containers.OracleContainer;
import org.testcontainers.utility.DockerImageName;

public class CustomOracleContainer extends OracleContainer {

public CustomOracleContainer() {
super("gvenzl/oracle-xe:21.3.0-slim-faststart");
super(
DockerImageName
.parse("gvenzl/oracle-free:23.5-slim-faststart")
.asCompatibleSubstituteFor("gvenzl/oracle-xe")
);

this.withDatabaseName("legacyfsa")
.withUsername("THE")
Expand Down
2 changes: 1 addition & 1 deletion legacydb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gvenzl/oracle-free:23.3-slim-faststart
FROM gvenzl/oracle-free:23.5-slim-faststart

COPY --chown=oracle:oracle removeDatabase ${ORACLE_BASE}/removeDatabase
RUN chmod +x ${ORACLE_BASE}/removeDatabase
Expand Down
Loading