My question is how to use docker container-built software&library in the host machine. A docker shipped library might be a dependence for other tool/library compilation. this question comes with me when I tried some open source projects, e.g., openj9.
For example, I built one openJ9 VM, a Java VM that is similar to the HotSpot JVM, in a docker container, following (building instruction).
The process is OK, but the next problem is how I can config the container-built jvm, residing at ~/openj9-openjdk-jdk8/build/linux-x86_64-normal-server-release/
inside of container, in the eclipse that resides at host machine?
I might be in the wrong way in using docker, feeling there would be a potential conflict, as the container environment for container-built jvm possibly differ from the host machine environment.
So can anyone explain the right way to use container-build jvm for my eclipse in the host machine? Thanks