https://github.com/aem-design/docker-toughday
aem stress testing helper
https://github.com/aem-design/docker-toughday
Last synced: 2 months ago
JSON representation
aem stress testing helper
- Host: GitHub
- URL: https://github.com/aem-design/docker-toughday
- Owner: aem-design
- License: apache-2.0
- Created: 2019-09-06T01:10:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-15T14:24:08.000Z (almost 4 years ago)
- Last Synced: 2024-12-26T21:27:13.718Z (4 months ago)
- Language: Shell
- Size: 65.4 KB
- Stars: 1
- Watchers: 10
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
## CentOS 7 with toughday
[](https://github.com/aem-design/docker-toughday/actions?workflow=ci)
[](https://github.com/aem-design/docker-toughday)
[](https://github.com/aem-design/docker-toughday)
[](https://github.com/aem-design/docker-toughday)
[](https://github.com/aem-design/docker-toughday)
[](https://hub.docker.com/r/aemdesign/toughday)
[](https://hub.docker.com/r/aemdesign/toughday)
[](https://github.com/aem-design/docker-toughday)This is docker image based on [aemdesign/oracle-jdk](https://hub.docker.com/r/aemdesign/oracle-jdk/) with toughday added
### Packages
Following packages that can be used for stress testing are added
| File | Notes |
| --- | --- |
| [toughday-6.1.jar](https://helpx.adobe.com/experience-manager/6-2/sites/developing/using/tough-day/_jcr_content/main-pars/download-section/download-1/file.res/toughday-6.1.jar) | |
| [toughday2-0.9.2.jar](https://repo.adobe.com/nexus/content/repositories/releases/com/adobe/qe/toughday2/0.9.2/toughday2-0.9.2.jar) | |
| [toughday2-0.2.1.jar](https://repo.adobe.com/nexus/content/repositories/releases/com/adobe/qe/toughday2/0.2.1/toughday2-0.2.1.jar) | |### Environment Variables
Following environment variables are available
| Name | Default Value | Notes |
| --- | --- | --- |
| TEST_HOST | "192.168.27.2" | host address |
| TEST_PORT | "4502" | port to use for host |
| TEST_JAR | "toughday-6.1.jar" | package to use for execution |
| TEST_MEM | "-Xmx1024m" | memory to use when eecuting |### Starting
To start a test of a local instance running on `192.168.27.2:4502` using test tool `toughday-6.1.jar` using 1GB ram use following command:
```bash
docker run \
-e "TEST_HOST=192.168.27.2" \
-e "TEST_PORT=4502" \
-e "TEST_JAR=toughday-6.1.jar" \
-e "TEST_JAVAOPTS=-Xmx1024m" \
aemdesign/toughday
```