Docker images for AltTester.
50K+
Docker images for AltTester®️.
Dockerfile linksAltTester®️ is a UI Test Automation solution for Unity applications.
Use the following command to start the AltTester®️ Desktop in batchmode:
docker run -p 13000:13000 -e TERMS_AND_CONDS=accepted -e ALTTESTER_DESKTOP_LICENSE=my-license alttestertools/alttester:latest
If you want to get the logs file from the Docker image, use the following command:
docker run -p 13000:13000 -v "$(pwd)":/AltTesterLogs -e TERMS_AND_CONDS=accepted -e ALTTESTER_DESKTOP_LICENSE=my-license alttestertools/alttester:latest
And you should see the AltTester.log file in the current working directory.
To start the AltTester®️ Desktop in secure mode with SSL/TLS, you need to provide a certificate. Mount your certificate file and set the certificate path:
docker run -p 13000:13000 ^
-v "%cd%/path/to/certificate.pfx":/AltTesterCertificates/certificate.pfx ^
-e TERMS_AND_CONDS=accepted ^
-e ALTTESTER_DESKTOP_LICENSE=my-license ^
-e CERTIFICATE_PATH=//AltTesterCertificates/certificate.pfx ^
alttestertools/alttester:latest
If your certificate is password-protected, also provide the password:
docker run -p 13000:13000 ^
-v "%cd%/path/to/certificate.pfx":/AltTesterCertificates/certificate.pfx ^
-e TERMS_AND_CONDS=accepted ^
-e ALTTESTER_DESKTOP_LICENSE=my-license ^
-e CERTIFICATE_PATH=//AltTesterCertificates/certificate.pfx ^
-e CERTIFICATE_PASSWORD=my-cert-password ^
alttestertools/alttester:latest
⚠️ Important: This Docker image is built for x86_64 (AMD64) architecture and is designed for use on Linux x86_64 hosts, Windows with WSL2, and CI/CD environments.
Not supported: This image does not work on Apple Silicon Macs. The x86_64 binary cannot run properly through Rosetta emulation and will crash on startup.
Note: When using
docker killto stop the container, the AltTester®️ Desktop process might not clean up properly, and the license may remain active.
Content type
Image
Digest
sha256:e44867cc5…
Size
421 MB
Last updated
about 2 months ago
docker pull alttestertools/alttester