-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Remove hardcoded Oracle image name #628
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
Conversation
| return new OracleContainer(OracleContainer.IMAGE + ":" + tag); | ||
|
|
||
| if (!tag.equalsIgnoreCase("latest")) { | ||
| throw new UnsupportedOperationException("Oracle database tag should be set in the configured image name"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a PITA to support setting the tag via the JDBC URL, and it wasn't usable previously anyway. This could be improved, but perhaps only if there is demand.
| @@ -0,0 +1 @@ | |||
| oracle.container.image=wnameless/oracle-xe-11g@sha256:15ff9ef50b4f90613c9780b589c57d98a8a9d496decec854316d96396ec5c085 | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this module has Oracle module as a dependency where the property is already set. Doesn't it work?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah no; both of these modules have the properties file in src/test/resources, so that bit of the classpath isn't shared.
|
@kiview do you want to add anything? Otherwise, let's merge 😄 |
kiview
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoops sorry, LGTM.
No description provided.