Run compiled App
Use ll-builder run to run the compiled executable program.
View the help information for the ll-builder run command:
ll-builder run --helpHere is the output:
Usage: ll-builder [options] run
Options:
-v, --verbose show detail log
-h, --help Displays this help.
--exec <exec> run exec than build script
Arguments:
run run projectThe ll-builder run command reads the operating system environment information related to the program according to the configuration file, constructs a container, and executes the program in the container without installation.
ll-builder runIf ll-builder run runs successfully, the output is as follows:
hello worldTo facilitate debugging, use an additional --exec /bin/bash parameter to replace the default execution program after entering the container, such as:
ll-builder run --exec /bin/bashWith this option, ll-builder will enter the bash terminal after creating the container, and can perform other operations inside the container.