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.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+22-8Lines changed: 22 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,28 @@ Note sha256 digests are generated after pushing the image to the registry theref
4
4
5
5
Note image ids also change after scm-source.json has being updated which triggers a cyclic problem so value TBD will be set here and updated in the [release][] page by navigating into any release tag.
6
6
7
-
How to get container versions
7
+
Get container versions run `docker exec grid versions`
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.2b
138
+
elgalu/selenium:2.48.2c
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
@@ -208,9 +208,9 @@ There are also additional steps you can take to ensure you're using the correct
208
208
209
209
You can simply verify that image id is indeed the correct one.
210
210
211
-
# e.g. full image id for tag 2.48.2b
211
+
# e.g. full image id for tag 2.48.2c
212
212
export IMGID=TBD
213
-
if docker inspect -f='{{.Id}}' elgalu/selenium:2.48.2b |grep ${IMGID} &> /dev/null; then
213
+
if docker inspect -f='{{.Id}}' elgalu/selenium:2.48.2c |grep ${IMGID} &> /dev/null; then
214
214
echo "Image ID tested ok"
215
215
else
216
216
echo "Image ID doesn't match"
@@ -220,7 +220,7 @@ 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:
@@ -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