3

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.

jrforever
  • 75
  • 1
  • 5

1 Answers1

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