Is it possible to have an application containerized in a Docker container and then to create a new process at runtime? I have something like this:
launchProcess() {
Runtime runtime = Runtime.getRuntime();
String launchProgramCommand = "some command that launches a program";
Process process = runtime.exec(launchProgramCommand);
}