To start, pull the image from Docker Hub (only necessary to get the latest version):
$
docker pull jetbrains/qodana-go:2022.3-eap
Start local analysis with source-directory
pointing to the root of your project:
$
docker run --rm -it \
-v <source-directory>/:/data/project/ \
-p 8080:8080 jetbrains/qodana-go:2022.3-eap --show-report
Open http://localhost:8080
in your browser to examine inspection results. Here, you can also reconfigure the analysis, see the User interface overview section for details. When done, you can stop the web server by pressing Ctrl-C in the console.