{"id":22871553,"url":"https://github.com/qainsights/jmeter","last_synced_at":"2025-07-25T23:04:39.845Z","repository":{"id":94104206,"uuid":"583005084","full_name":"QAInsights/jmeter","owner":"QAInsights","description":"Lightweight JMeter Docker Image","archived":false,"fork":false,"pushed_at":"2025-03-16T00:35:49.000Z","size":17,"stargazers_count":11,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-05T22:42:08.257Z","etag":null,"topics":["docker","jmeter"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/repository/docker/qainsights/jmeter","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/QAInsights.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":"2022-12-28T13:36:47.000Z","updated_at":"2025-03-31T02:19:17.000Z","dependencies_parsed_at":"2025-05-05T22:34:44.679Z","dependency_job_id":"eee0515b-58fb-4d6e-8caf-91102568c261","html_url":"https://github.com/QAInsights/jmeter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/QAInsights/jmeter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QAInsights%2Fjmeter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QAInsights%2Fjmeter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QAInsights%2Fjmeter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QAInsights%2Fjmeter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/QAInsights","download_url":"https://codeload.github.com/QAInsights/jmeter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/QAInsights%2Fjmeter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267079022,"owners_count":24032355,"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-07-25T02:00:09.625Z","response_time":70,"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","jmeter"],"created_at":"2024-12-13T13:19:57.413Z","updated_at":"2025-07-25T23:04:39.788Z","avatar_url":"https://github.com/QAInsights.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Lightweight Apache JMeter Docker Image\n\nThis repository contains a Dockerfile for a lightweight Apache JMeter image. The Dockerfile is designed to be small and efficient, while still providing the full functionality of Apache JMeter.\n\n## ✨ Features\n\n- Based on the small and secure Alpine Linux image.\n- Leverages `bellsoft/liberica-openjdk-alpine` - Liberica JDK is free and 100% open-source Progressive Java Runtime for modern Java deployments. \n- Includes the Apache JMeter for load testing.\n- Includes a script for installing JMeter plugins.\n- Secured, it will run as `jmeter` - non-root.\n- **Multi-architecture support** for both `amd64` (x86_64) and `arm64` platforms.\n- Optimized image size using multi-stage builds.\n\n## 🎉 Image Size\n\n- Compressed Size: 151.78 MB\n- Uncompressed Size: 209.71 MB\n\n##  🐳 Basic Usage\n\nTo build the Docker image, run the following command in the directory containing the Dockerfile:\n\n```bash\ndocker build -t my-jmeter-image .\n```\n\nTo run JMeter using the built image, you can use the following command:\n\n```bash\ndocker run -v /path/to/your/test:/tests my-jmeter-image /tests/your-test.jmx\n```\nReplace /path/to/your/test with the path to the directory containing your JMeter test, and your-test.jmx with the name of your JMeter test file.\n\n## 🏗️ Multi-Architecture Support\n\nThis Docker image supports multiple CPU architectures, allowing it to run on various platforms including:\n- x86_64 / AMD64 (standard Intel/AMD processors)\n- ARM64 (Apple M1/M2/M3, AWS Graviton, Raspberry Pi 4, etc.)\n\n### Building Multi-Architecture Images\n\nA shell script is provided to build multi-architecture images:\n\n```bash\n# Make the script executable\nchmod +x build-multiarch.sh\n\n# Show help and available options\n./build-multiarch.sh --help\n\n# Build and push multi-architecture image\n./build-multiarch.sh --name jmeter --tag 5.6.3 --registry your-registry/ --push\n```\n\nThe script supports the following options:\n- `-h, --help`: Show help message\n- `-n, --name NAME`: Set image name (default: jmeter)\n- `-t, --tag TAG`: Set image tag (default: latest)\n- `-r, --registry REGISTRY`: Set registry (default: none)\n- `-p, --platforms PLATFORMS`: Set platforms (default: linux/amd64,linux/arm64)\n- `--push`: Push image to registry\n- `--load`: Load image to local Docker (only works with single platform)\n\n##  🐳 🐳 Advanced Usage\n\n### 📦 Installing JMeter plugins\n\nIn Dockerfile, add the required JMeter plugins to install in a comma separated values as shown below.\n\n```bash\nARG JMETER_PLUGINS=\"jpgc-udp=0.4,jpgc-dummy\"\n```\n\nTo install specific version add `=` to specify the version, else the latest version will be installed.\n\n### 🔧 Optimizing Image Size\n\nThe Dockerfile uses several techniques to minimize the image size:\n\n1. Multi-stage builds to separate build dependencies from runtime\n2. Removal of unnecessary files (documentation, Windows batch files)\n3. Cleanup of temporary files and package caches\n4. Minimal plugin installation\n\n# 💻 Contributing\nContributions are welcome! Please feel free to submit a Pull Request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqainsights%2Fjmeter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqainsights%2Fjmeter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqainsights%2Fjmeter/lists"}