Hello everyone.
I am attempting to create an image with podman using the free repository.
And then to connect to it from the same machine that is running the image.
So in my Ubuntu client/host I installed podman and then following this guide:
https://container-registry.oracle.com/ → databases → free
I gave this command:
podman run -d --name oracle-db -p 1512:1512 container-registry.oracle.com/database/free:latest
podman exec oracle-db ./setPassword.sh Password1
podman port oracle-db
1512/tcp -> 0.0.0.0:1512
and then opened Oracle Sql Developer and searched for localhost 1512 with user SYS and password Password1
But I can not find it.
What should I attempt ? Maybe sid is wrong?
What Am I doing Wrong?