You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've not yet done the setup to run the Oracle so I can't verify this, but this sounds like something that I've seen on certain Macs. The Docker daemon runs inside a VM called Colima, which by default does not expose any ports to the host. You need to do the following:
$ docker-compose down
$ colima stop
$ colima start --network-address
$ docker-compose up -d
While this will still not expose the port on localhost, it will assign to the VM an IP address that is visible from the host. You can find out the IP address by running colima list. In my Mac it's 192.168.108.4, so the API should be available at 192.168.108.4:8080.
I've done further testing. As long as you do the colima start --network-address bit you should be able to connect to localhost. You only need to do it once, the setting is persistent.
If this happens on something other than a Mac, then I have no idea.
Description
Current Configuration
Observed Behavior
Steps to Reproduce
Impact
The text was updated successfully, but these errors were encountered: