You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned on the [Docker Hub](https://hub.docker.com/r/ppodgorsek/robot-framework), the project has been built and uploaded as a linux/amd64 image. This means ARM devices won't be able to run the image with the default configuration.
286
+
287
+
Podman and Docker provide a `--platform` option which emulates a given application architecture, such as:
288
+
289
+
docker run \
290
+
--platform linux/amd64 \
291
+
-v <local path to the reports' folder>:/opt/robotframework/reports:Z \
292
+
-v <local path to the test suites' folder>:/opt/robotframework/tests:Z \
293
+
ppodgorsek/robot-framework:<version>
294
+
295
+
Please note: such emulation might not work, depending on your device and operating system.
296
+
297
+
If this does not solve your platform-related issues, you will have to rebuild the image for your device/platform.
298
+
283
299
## Please contribute!
284
300
285
301
Have you found an issue? Do you have an idea for an improvement? Feel free to contribute by submitting it [on the GitHub project](https://github.com/ppodgorsek/docker-robot-framework/issues).
0 commit comments