I want to convert an application that currently runs with docker to boxfuse.
After the maven build, I have these relevant files:
/target/my-app-shaded.jar
/config-dev.yml
The command to run the jar locally would be simply jar -jar target/my-app-shaded.jar server config-dev.yml
What I could figure out is that boxfuse run target/my-app-shaded.jar
runs the jar file, but how do I add the config file and the command line arguments?