Replies: 2 comments
-
If you take a look at the OracleContainer implementation you can notice that some env var are set by default. When using OracleContainer you can get those values as it is shown below OracleContainer container = new OracleContainer("gvenzl/oracle-xe:21-slim-faststart");
container.getJdbcUrl();
container.getUsername();
container.getPassword(); |
Beta Was this translation helpful? Give feedback.
0 replies
-
hi @eddumelendez. Thank you, ineed the default password is |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I was looking into the oracle xe container.
If I run it from the command line:
docker run -d -p 1521:1521 -e ORACLE_PASSWORD=oracle gvenzl/oracle-xe:21-slim-faststart
I can connect to the database assystem
/oracle
, but if I use test containers, then I can only connect with a user accounttest
/test
.Why is that?
Beta Was this translation helpful? Give feedback.
All reactions