I'm using apache ignite for in-memory cache. I want to deploy my app using docker with swarm mode. Which ports should be exposed in a container? I see in ignite docker module that these ports are exposed 11211 47100 47500 49112. But in my app log I see different ports like 48100 for shared memory communication.
Asked
Active
Viewed 1,239 times
1 Answers
4
It's enough to exposed listed ports. Shared memory is not supported by docker, so you may simply ignore it.
11211 - REST service port;
47100 - communication port;
47500 - discovery port;
49112 - JMX port.

Mitya XMitya
- 1,129
- 9
- 17