-
Hello everyone, I would be interested to understand how the solution can be used to run FMUs as independent Docker containers. Are there any examples I can start with (i.e. Dockerfiles)? My FMUs have Windows dependencies and, yes, I would run them in Windows containers. I did this before, but having them separated from the main application would be awesome. Also, how would I interact with the FMU from my C# .NET application in this case? Maybe I missed relevant information in the repository files - in this case, some pointers would be sufficient. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I don't use docker, but all you have to do is to copy paste the The docker container also needs a JDK: Basically:
The README should cover this. |
Beta Was this translation helpful? Give feedback.
I don't use docker, but all you have to do is to copy paste the
fmu-proxy-booter
executable into the container.The docker container also needs a JDK:
JAVA_HOME should point to a JDK8+ installation.
%JAVA_HOME%\jre\bin\server must be added to PATH.
Basically:
./gradlew build
fmu-proxy-booter
(located in fmu-proxy-booter/build/install) in the container supplied with an open port.fmu-proxify
located underfmu-proxify/build/install
on the target FMU. Supply the remoteAddress. I.e. IP of the container and port used by the booter.The README should cover this.