From f77af882bc5aed6cf2a4ce1e9fcb7e17b5eea509 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 4 Mar 2025 07:32:46 -0800 Subject: [PATCH] Pull the selenium standalone-firefox image from quay We have mirrored the selenium/standalone-firefox image to quay.io/opendevmirror so that we don't have to pull this image from docker hub and eat into quotas there. Start fetching the image from the mirror in our CI jobs. Change-Id: I790f7b29f7e30c2cc2a8b37c0146d1f8e594264e --- playbooks/roles/run-selenium/tasks/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/roles/run-selenium/tasks/main.yaml b/playbooks/roles/run-selenium/tasks/main.yaml index e3cd2701e2..7e8ab4b085 100644 --- a/playbooks/roles/run-selenium/tasks/main.yaml +++ b/playbooks/roles/run-selenium/tasks/main.yaml @@ -2,4 +2,4 @@ shell: executable: /bin/sh cmd: | - docker run -d --network="host" -v /dev/shm:/dev/shm selenium/standalone-firefox:latest + docker run -d --network="host" -v /dev/shm:/dev/shm quay.io/opendevmirror/selenium-standalone-firefox:latest