I have two linux docker containers: * ContainerA - tomcat image - running a java app * ContainerB - ubuntu image - execution of shell script runs a CLI linux application
ContainerA doesn't have busybox hence can't run the shell script, and needs to be seperated from the linux app due to large filesize - hence two docker containers.
I'm trying to call from ContainerA the shell script which in ContainerB, but can't access it.
- Was looking into --links but it's not networking. I'm confused how to proceed or in making it work.