https://github.com/danielwhatmuff/robot-docker
Docker build for the Robot Testing Tool
https://github.com/danielwhatmuff/robot-docker
Last synced: 4 months ago
JSON representation
Docker build for the Robot Testing Tool
- Host: GitHub
- URL: https://github.com/danielwhatmuff/robot-docker
- Owner: danielwhatmuff
- Created: 2016-05-09T00:58:29.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-20T20:41:59.000Z (over 9 years ago)
- Last Synced: 2025-10-21T18:36:02.273Z (8 months ago)
- Language: RobotFramework
- Size: 73.2 KB
- Stars: 14
- Watchers: 3
- Forks: 13
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Docker image for the Robot Framework
===============
.. contents::
:local:
Overview
------------
Information on the Robot Framework can be found here:
`Robot Framework `_
Run Robot inside Docker
------------
To build a Robot Docker image::
docker build -t robot-docker .
To run tests, mount a directory and pass the ROBOT_TESTS env var::
docker run --rm \
-e ROBOT_TESTS=/path/to/tests/ \
-v /path/to/tests/:/path/to/tests/ \
-ti \
robot-docker
Example of running the sample tests::
docker run --rm \
-e ROBOT_TESTS=/sample_tests/ \
-v $(pwd)/sample_tests:/sample_tests \
-ti robot-docker
Use the Docker Hub automated build::
docker pull danielwhatmuff/robot-docker