Skip to content
This repository has been archived by the owner on Jun 30, 2021. It is now read-only.

Commit

Permalink
v2.46.0-01: Update image id and digest.
Browse files Browse the repository at this point in the history
  • Loading branch information
elgalu committed Jul 16, 2015
1 parent 9bc267e commit 8b03ac3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ tmp/
*_image/
browsers-bins/
READMEBS.md
videos/

4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Note image ids also change after scm-source.json has being updated which trigger
+ Built with: Docker version 1.7.1, build 786b29d
+ FROM ubuntu:trusty-20150630
+ Python: 2.7.6
+ Digest: sha256:TBD
+ Image ID: TBD
+ Digest: sha256:29766e276918fd39ec679fe9ad208d3aa04deeb7e22171aaaa5877ab6f732616
+ Image ID: 049e6178f83f6abe4230211e0f1116ccdda92083b3f81038a1a7fc1d5325f26b

## v2.46.0-00 (2015-07-15)
+ Make selenium maxInstances & maxSession configurable. (Leo Gallucci)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ You can lunch a node only container via environment variables:
-e SSH_AUTH_KEYS="$(cat ~/.ssh/id_rsa.pub)" -e VIDEO=true \
-e SELENIUM_HUB_HOST=10.161.128.170 \
-e SELENIUM_HUB_PORT=4444 \
-e SELENIUM_NODE_HOST=10.161.128.170 \
-e SELENIUM_NODE_HOST=10.161.131.6 \
-p 25550:25550 -p 25551:25551 \
-e GRID=false -e CHROME=true -e FIREFOX=true \
-v $(pwd)/videos:/videos \
Expand Down Expand Up @@ -134,15 +134,15 @@ There are also additional steps you can take to ensure you're using the correct
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:

# e.g. sha256 for tag v2.46.0-01
export SHA=TBD
export SHA=29766e276918fd39ec679fe9ad208d3aa04deeb7e22171aaaa5877ab6f732616
docker pull elgalu/selenium@sha256:${SHA}

### Option 2 - Check the Full Image Id

Verify that image id is indeed correct

# e.g. full image id for tag v2.46.0-01
export IMGID=TBD
export IMGID=049e6178f83f6abe4230211e0f1116ccdda92083b3f81038a1a7fc1d5325f26b
if docker inspect -f='{{.Id}}' elgalu/selenium:v2.46.0-01 |grep ${IMGID} &> /dev/null; then
echo "Image ID tested ok"
else
Expand Down
2 changes: 1 addition & 1 deletion scm-source.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"url": "https://github.com/elgalu/docker-selenium",
"revision": "9687f39dec1e406ff9c04b5d559a2cbd6c11d049",
"revision": "9bc267efa95a548a94be47a26ae6d1702e4fd091",
"author": "lgallucci",
"status": ""
}

0 comments on commit 8b03ac3

Please sign in to comment.