We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
To pull the OpenQP Docker image, run:
docker pull openqp/openqp:v1.0
To start an interactive session inside the Docker container, use:
docker run -it openqp/openqp:v1.0
This opens a command-line interface where you can run OpenQP commands.
Inside the container, use OpenQP with an internal input file like so:
openqp <input_file>
Replace <input_file> with the path of your input file in the container.
<input_file>
To use files from your local machine, mount a directory when starting the container. For example:
docker run -it -v /path/to/local/files:/data openqp/openqp:v1.0
This mounts the local /path/to/local/files directory to /data inside the container. You can then access and use external files as follows:
/path/to/local/files
/data
openqp /data/input_file.inp
This command processes the input file input_file.inp from your local machine.
input_file.inp
Any output files created in the mounted /data directory will be saved in /path/to/local/files on your local machine.
To exit the container, type:
exit
Back