{"id":28713583,"url":"https://github.com/marlinhares/soapui-docker","last_synced_at":"2026-05-17T19:39:27.406Z","repository":{"id":110047505,"uuid":"369687806","full_name":"marlinhares/soapui-docker","owner":"marlinhares","description":"Docker container to run soapui - testrunner and loadtestrunner","archived":false,"fork":false,"pushed_at":"2022-11-09T05:16:05.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-15T00:11:45.967Z","etag":null,"topics":["docker","soapui"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marlinhares.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-05-22T01:09:24.000Z","updated_at":"2024-04-25T14:32:03.000Z","dependencies_parsed_at":"2023-05-10T23:15:51.728Z","dependency_job_id":null,"html_url":"https://github.com/marlinhares/soapui-docker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/marlinhares/soapui-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marlinhares%2Fsoapui-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marlinhares%2Fsoapui-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marlinhares%2Fsoapui-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marlinhares%2Fsoapui-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marlinhares","download_url":"https://codeload.github.com/marlinhares/soapui-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marlinhares%2Fsoapui-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017935,"owners_count":26086214,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","soapui"],"created_at":"2025-06-15T00:11:07.855Z","updated_at":"2025-10-14T04:42:47.394Z","avatar_url":"https://github.com/marlinhares.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SOAPUI - Docker\n\n## General\n\nThis conteiner runs a Soapui 5.5. Can be used to run functional or load tests.\nThe advantage is: \n- runs in Jenkins or any Pipeline that supports docker\n- no need to install or configure Soapui\n- no Memory Consumption based on the GUI interface of SOAPUI\n- all tests must run in command line\n\nIn my case, I use it to run remotely on my jenkins conteiner:  functional tests and load tests written in SOAPUI\n\n## How to Use\n\n- go to the folder where your Soapui project is saved\n- you do not need to build this image, use this pre-built instead: \n\t- ``` docker pull linhares/soapui-docker:5.5.0-1.0.0 ```\n- run the appropriate docker command. See examples bellow\n\n## Parameters\n\n**Environment**\n- LOG_LEVEL - sets the log level on soapui log4 - Eg:  \n\t- ``` -e \"LOG_LEVEL=ERROR\"  ```  \n\t- Default value is DEBUG\n\n\n- XMX - sets the max memory for Java - Eg:\n\t- ```  -e \"XMX=4000m\" ``` \n\t- Default value is 1024m\n\n- COMMAND - this env parameter just tells conteiner what command it will run - Eg:\n\t- ```  -e \"COMMAND=loadtestrunner.sh\" ``` \n\t- Default value is testrunner.sh\n\n\n**Command of the Conteiner**\nHere you pass the soapui parameters just like calling it via command line.\nFollow examples bellow\n\n## Examples\n\nAll examples assume: \n- you are in the folder where your Soapui tests resids\n- the test project xml is Barramento-API-V3-soapui-project.xml\n- there is a test suite named: SuiteTestes1\n- there is a test case named: TestCase-EnvioRecebimento-MultiAnexos\n- there is a test load named: LoadTest 1\n\nJust replace for your own names on the examples.\n\n- **call simple test**\n\t- ``` docker run --rm -it -v \"$PWD\":/project linhares/soapui-docker:5.5.0-1.0.0 /project/Barramento-API-V3-soapui-project.xml ```\n\n- **call simple test but specifying suite and testcase to run**\n\t- ``` docker run --rm -it -v \"$PWD\":/project linhares/soapui-docker:5.5.0-1.0.0 -sSuiteTestes1 -cTestCase-EnvioRecebimento-MultiAnexos /project/Barramento-API-V3-soapui-project.xml ```\n\n- **call load test**\n \n\t- ``` docker run --rm -it -e \"LOG_LEVEL=ERROR\" -e \"XMX=4000m\" -e \"COMMAND=loadtestrunner.sh\" -v \"$PWD\":/project linhares/soapui-docker:5.5.0-1.0.0 /project/Barramento-API-V3-soapui-project.xml ``` \n\n\t- Pay attention to the env parameters: COMMAND, XMX and LOG_LEVEL\n\n- **call specific load test saving the results to a dir with others parameters**\n\t- ``` docker run --rm -it -e \"TZ=America/Sao_Paulo\" -e \"XMX=4000m\" -e \"COMMAND=loadtestrunner.sh\" -v \"$PWD\":/project linhares/soapui-docker:5.5.0-1.0.0 -sSuiteTestes1 -cTestCase-EnvioRecebimento-MultiAnexos -PQtdArquivosProcesso=2 -m5 -n2 -r -f/project/result -l\"LoadTest 1\" /project/Barramento-API-V3-soapui-project.xml ```\n\n\t- -m change how many iterations the load test will run\n\t- -n how many threads will be created in parallel\n\t- -r export statistics\n\t- -f output folder of the results\n\t- -l inform the specific Load Test in case you have many\n\t- etc. Here you can use all parameters of the soapui loadrunner\n\n## Considerations\n\nInitially the logs will show some error messages, just ignore then. Thats because the conteiner does not have a GUI. The tests will run at the end. Just follow the logs.\n\nI used this image as a start point: https://hub.docker.com/r/ilyaavdeev/soapui-testrunner\nThere it installs the SOAPUI 5.5.\nI just made some tweaks to run heavy load tests.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarlinhares%2Fsoapui-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarlinhares%2Fsoapui-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarlinhares%2Fsoapui-docker/lists"}