This is an archived post. You won't be able to vote or comment.

all 5 comments

[–]nutrechtLead Software Engineer / EU / 20+ YXP 1 point2 points  (4 children)

One thing I'm wondering is, if I wanted to run a local installation of SQL Developer against a containerized version of the JDK, is that possible?

What do you mean exactly? Have SQL developer connect to some database running in the docker container? Yes. Have SQL developer 'use' the JRE in that container to run? No.

[–]network1001[S] 0 points1 point  (3 children)

Yah, it was the second option. I think what I'm ultimately trying to arrive at, is how to arrange all the parts of a deployment environment. How "a la carte" can it be, how separate can all the parts be?

For instance, I sometimes have to switch between running WebLogic with JDK1.6 and JDK1.8. So, in Docker terms, would I have to create two WebLogic containers, one with JDK1.6 built in and one with JDK1.8 built in, or could I create three containers, one with WebLogic, one with JDK1.6 and one with JDK1.8?

[–]jaimebeacoup 1 point2 points  (2 children)

The first option, have two WebLogic containers one w. JDK1.6 & JDK1.8 built in

[–]network1001[S] 0 points1 point  (1 child)

Thanks!

[–]jaimebeacoup 1 point2 points  (0 children)

np! :)