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
{{ message }}
This repository was archived by the owner on Jun 30, 2021. It is now read-only.
The important part above is `-e CHROME=false -e FIREFOX=false` which tells the docker image not run run default chorme and firefox nodes turning the container into a grid-only one.
127
127
@@ -135,7 +135,7 @@ You can lunch a node only container via environment variables:
135
135
-e SELENIUM_HUB_PORT=4444 \
136
136
-e SELENIUM_NODE_HOST=docker.host \
137
137
-e GRID=false -e CHROME=true -e FIREFOX=true \
138
-
elgalu/selenium:2.48.2a
138
+
elgalu/selenium:2.48.2b
139
139
140
140
The important part above is `-e GRID=false` which tells the container to be a node-only node, this this case with 2 browsers `-e CHROME=true -e FIREFOX=true` but could be just 1.
141
141
@@ -149,7 +149,7 @@ Start the grid with Chrome and Firefox
if docker inspect -f='{{.Id}}' elgalu/selenium:2.48.2a |grep ${IMGID} &> /dev/null; then
211
+
# e.g. full image id for tag 2.48.2b
212
+
export IMGID=TBD
213
+
if docker inspect -f='{{.Id}}' elgalu/selenium:2.48.2b |grep ${IMGID} &> /dev/null; then
214
214
echo "Image ID tested ok"
215
215
else
216
216
echo "Image ID doesn't match"
@@ -220,8 +220,8 @@ You can simply verify that image id is indeed the correct one.
220
220
221
221
Given docker.io currently allows to push the same tag image twice this represent a security concern but since docker >= 1.6.2 is possible to fetch the digest sha256 instead of the tag so you can be sure you're using the exact same docker image every time:
You can find all digests sha256 and image ids per tag in the [CHANGELOG](./CHANGELOG.md) so as of now you just need to trust the sha256 in the CHANGELOG. Bullet proof is to fork this project and build the images yourself if security is a big concern.
@@ -349,7 +349,7 @@ If you git clone this repo locally, i.e. cd into where the Dockerfile is, you ca
349
349
350
350
If you prefer to download the final built image from docker you can pull it, personally I always prefer to build them manually except for the base images like Ubuntu 14.04.2:
0 commit comments