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

Commit 0b42b84

Browse files
committed
Upgrade Firefox to 43.0.2
1 parent 27aa767 commit 0b42b84

File tree

5 files changed

+58
-41
lines changed

5 files changed

+58
-41
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ Note image ids also change after scm-source.json has being updated which trigger
77
###### To get container versions
88
docker exec grid versions
99

10+
## 2.48.2i (2015-12-23)
11+
+ Upgrade Firefox to 43.0.2
12+
+ Image tag details:
13+
+ Selenium: v2.48.2 (41bccdd)
14+
+ Chrome stable: 47.0.2526.106
15+
+ Firefox stable: 43.0.2
16+
+ Chromedriver: 2.20.353124 (035346203162d32c80f1dce587c8154a1efa0c3b)
17+
+ Java: 1.8.0_72-internal OpenJDK 64-Bit 1.8.0_72-b05
18+
+ Timezone: Europe/Berlin
19+
+ Built with: Docker version 1.9.1, build a34a1d5
20+
+ FROM ubuntu:xenial-20151218.1
21+
+ Python: 2.7.11
22+
+ Sauce Connect 4.3.13, build 1877 d9e5947
23+
+ BrowserStack Local version 4.2
24+
+ Image ID: TBD
25+
+ Digest: sha256:TBD
26+
1027
## 2.48.2h (2015-12-20)
1128
+ Upgrade Ubuntu from 15.10 (wily) to 16.04 (xenial)
1229
+ Upgrade Java from 1.8.0_66-b01 to 1.8.0_72-b05

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ RUN cd /tmp \
563563
#---------------------#
564564
# Latest available firefox version
565565
# this also works: ENV FIREFOX_LATEST_VERSION latest
566-
ENV FIREFOX_VERSIONS7 "43.0.1"
566+
ENV FIREFOX_VERSIONS7 "43.0.2"
567567
RUN cd ${NORMAL_USER_HOME}/firefox-src \
568568
&& for FF_VER in $(echo ${FIREFOX_VERSIONS7} | tr "," "\n"); do \
569569
mozdownload --application=firefox \

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ Note SeleniumHQ/docker-selenium project is more useful for building selenium gri
2222

2323
In general add `sudo` only if needed in your environment and `--privileged` or `-v /dev/shm:/dev/shm` if you really need it like when [Chrome crashes](https://github.com/elgalu/docker-selenium/issues/20) during your high gpu intensive tests.
2424

25-
docker pull elgalu/selenium:2.48.2h
25+
docker pull elgalu/selenium:2.48.2i
2626

2727
docker run --rm --name=grid -p 4444:24444 -p 5920:25900 \
28-
-v /dev/shm:/dev/shm -e VNC_PASSWORD=hola elgalu/selenium:2.48.2h
28+
-v /dev/shm:/dev/shm -e VNC_PASSWORD=hola elgalu/selenium:2.48.2i
2929

3030
Make sure `docker run` finishes with **selenium all done and ready for testing** else you won't be able to start your tests. To perform this check programatically please use this command where `grid` is the name of the container:
3131

@@ -64,12 +64,12 @@ Supervisor exposes an http server but is not enough to bind the ports via `docke
6464
### Screen size
6565
You can set a custom screen size at docker run time by providing `SCREEN_WIDTH` and `SCREEN_HEIGHT` environment variables:
6666

67-
docker pull elgalu/selenium:2.48.2h
67+
docker pull elgalu/selenium:2.48.2i
6868

6969
docker run -d --name=grid -p 4444:24444 -p 5920:25900 \
7070
-v /dev/shm:/dev/shm -e VNC_PASSWORD=hola \
7171
-e SCREEN_WIDTH=1920 -e SCREEN_HEIGHT=1480 \
72-
elgalu/selenium:2.48.2h
72+
elgalu/selenium:2.48.2i
7373

7474
docker exec grid wait_all_done 10s
7575

@@ -123,7 +123,7 @@ You need to pass the environment variable `-e NOVNC=true` in order to start the
123123

124124
docker run --rm --name=grid -p 4444:24444 -p 5920:25900 \
125125
-p 6080:26080 -e NOVNC=true \
126-
elgalu/selenium:2.48.2h
126+
elgalu/selenium:2.48.2i
127127

128128
If the VNC password was randomly generated find out with
129129

@@ -136,7 +136,7 @@ If the VNC password was randomly generated find out with
136136
You can launch a grid only container via environment variables:
137137

138138
docker run --rm --name=hub -p 4444:24444 -p 5930:25900 \
139-
-e CHROME=false -e FIREFOX=false elgalu/selenium:2.48.2h
139+
-e CHROME=false -e FIREFOX=false elgalu/selenium:2.48.2i
140140

141141
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.
142142

@@ -150,7 +150,7 @@ You can lunch a node only container via environment variables:
150150
-e SELENIUM_HUB_PORT=4444 \
151151
-e SELENIUM_NODE_HOST=docker.host \
152152
-e GRID=false -e CHROME=true -e FIREFOX=true \
153-
elgalu/selenium:2.48.2h
153+
elgalu/selenium:2.48.2i
154154

155155
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.
156156

@@ -164,7 +164,7 @@ Start the grid with Chrome and Firefox
164164
-e SELENIUM_NODE_CH_PORT=25010 -e SELENIUM_NODE_FF_PORT=26010 \
165165
-e GRID=true -e CHROME=true -e FIREFOX=true \
166166
-e VNC_PASSWORD=hola -e VNC_PORT=5810 \
167-
-v /dev/shm:/dev/shm elgalu/selenium:2.48.2h
167+
-v /dev/shm:/dev/shm elgalu/selenium:2.48.2i
168168

169169
Add another docker container node with 2 more browsers:
170170

@@ -174,7 +174,7 @@ Add another docker container node with 2 more browsers:
174174
-e SELENIUM_NODE_CH_PORT=25020 -e SELENIUM_NODE_FF_PORT=26020 \
175175
-e GRID=false -e CHROME=true -e FIREFOX=true \
176176
-e VNC_PASSWORD=hola -e VNC_PORT=5820 \
177-
-v /dev/shm:/dev/shm elgalu/selenium:2.48.2h
177+
-v /dev/shm:/dev/shm elgalu/selenium:2.48.2i
178178

179179
And another
180180

@@ -184,7 +184,7 @@ And another
184184
-e SELENIUM_NODE_CH_PORT=25030 -e SELENIUM_NODE_FF_PORT=26030 \
185185
-e GRID=false -e CHROME=true -e FIREFOX=true \
186186
-e VNC_PASSWORD=hola -e VNC_PORT=5830 \
187-
-v /dev/shm:/dev/shm elgalu/selenium:2.48.2h
187+
-v /dev/shm:/dev/shm elgalu/selenium:2.48.2i
188188

189189
## Chrome crashed
190190

@@ -223,9 +223,9 @@ There are also additional steps you can take to ensure you're using the correct
223223

224224
You can simply verify that image id is indeed the correct one.
225225

226-
# e.g. full image id for tag 2.48.2h
226+
# e.g. full image id for tag 2.48.2i
227227
export IMGID="<<Please see CHANGELOG.md>>"
228-
if docker inspect -f='{{.Id}}' elgalu/selenium:2.48.2h |grep ${IMGID} &> /dev/null; then
228+
if docker inspect -f='{{.Id}}' elgalu/selenium:2.48.2i |grep ${IMGID} &> /dev/null; then
229229
echo "Image ID tested ok"
230230
else
231231
echo "Image ID doesn't match"
@@ -235,7 +235,7 @@ You can simply verify that image id is indeed the correct one.
235235

236236
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:
237237

238-
# e.g. sha256 for tag 2.48.2h
238+
# e.g. sha256 for tag 2.48.2i
239239
export SHA=<<Please see CHANGELOG.md>>
240240
docker pull elgalu/selenium@sha256:${SHA}
241241

@@ -261,7 +261,7 @@ Host machine, terminal 2:
261261
docker run --rm --name=ch -p=4444:24444 \
262262
-e SCREEN_WIDTH -e SCREEN_HEIGHT -e XE_DISP_NUM \
263263
-v /tmp/.X11-unix/X${XE_DISP_NUM}:/tmp/.X11-unix/X${XE_DISP_NUM} \
264-
elgalu/selenium:2.48.2h
264+
elgalu/selenium:2.48.2i
265265

266266
Now when you run your tests instead of connecting. If docker run fails try `xhost +`
267267

@@ -283,7 +283,7 @@ ANYPORT=0
283283
REMOTE_DOCKER_SRV=localhost
284284
CONTAINER=$(docker run -d -p=0.0.0.0:${ANYPORT}:22222 -p=0.0.0.0:${ANYPORT}:24444 \
285285
-p=0.0.0.0:${ANYPORT}:25900 -e SCREEN_HEIGHT=1110 -e VNC_PASSWORD=hola \
286-
-e SSH_AUTH_KEYS="$(cat ~/.ssh/id_rsa.pub)" elgalu/selenium:2.48.2h
286+
-e SSH_AUTH_KEYS="$(cat ~/.ssh/id_rsa.pub)" elgalu/selenium:2.48.2i
287287
288288
# -- Option 2.docker run- Running docker on remote docker server like in the cloud
289289
# Useful if the docker server is running in the cloud. Establish free local ports
@@ -293,7 +293,7 @@ ssh ${REMOTE_DOCKER_SRV} #get into the remote docker provider somehow
293293
# it acts as a jump host so my public key is already on that server
294294
CONTAINER=$(docker run -d -p=0.0.0.0:${ANYPORT}:22222 -e SCREEN_HEIGHT=1110 \
295295
-e VNC_PASSWORD=hola -e SSH_AUTH_KEYS="$(cat ~/.ssh/authorized_keys)" \
296-
elgalu/selenium:2.48.2h
296+
elgalu/selenium:2.48.2i
297297
298298
# -- Common: Wait for the container to start
299299
./host-scripts/wait-docker-selenium.sh grid 7s
@@ -364,7 +364,7 @@ If you git clone this repo locally, i.e. cd into where the Dockerfile is, you ca
364364
365365
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:
366366
367-
docker pull elgalu/selenium:2.48.2h
367+
docker pull elgalu/selenium:2.48.2i
368368
369369
#### 2. Use this image
370370

READMELeo.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
## Build
22

3-
time (docker build -t="elgalu/selenium:2.48.2h" . ;echo $?;beep)
4-
docker run --rm -ti -m 4000M --cpu-quota=0 --name=grid -p=4444:24444 -p=5920:25900 -p=2222:22222 -e DISABLE_ROLLBACK=true -e VIDEO=true -e MEM_JAVA="1024m" -e SSH_AUTH_KEYS="$(cat ~/.ssh/id_rsa.pub)" -v /dev/shm:/dev/shm elgalu/selenium:2.48.2h
3+
time (docker build -t="elgalu/selenium:2.48.2i" . ;echo $?;beep)
4+
docker run --rm -ti -m 4000M --cpu-quota=0 --name=grid -p=4444:24444 -p=5920:25900 -p=2222:22222 -e DISABLE_ROLLBACK=true -e VIDEO=true -e MEM_JAVA="1024m" -e SSH_AUTH_KEYS="$(cat ~/.ssh/id_rsa.pub)" -v /dev/shm:/dev/shm elgalu/selenium:2.48.2i
55

66
Wait and id
77

88
docker exec grid wait_all_done 30s
9-
docker inspect -f='{{.Id}}' elgalu/selenium:2.48.2h
9+
docker inspect -f='{{.Id}}' elgalu/selenium:2.48.2i
1010

1111
Copy
1212

@@ -19,12 +19,12 @@ Location, e.g.
1919
## Push
2020

2121
rm -f ~/.docker/config.json && cp ~/.docker/config.pub.json ~/.docker/config.json
22-
docker push elgalu/selenium:2.48.2h ;echo $?;beep
22+
docker push elgalu/selenium:2.48.2i ;echo $?;beep
2323
# grab digest and update CHANGELOG.md
24-
git add CHANGELOG.md && gci "2.48.2h: Update image id and digest"
25-
docker tag -f elgalu/selenium:2.48.2h elgalu/selenium:latest
24+
git add CHANGELOG.md && gci "2.48.2i: Update image id and digest"
25+
docker tag -f elgalu/selenium:2.48.2i elgalu/selenium:latest
2626
docker push elgalu/selenium:latest
27-
git tag 2.48.2h && git tag latest && git push && git push --tags
27+
git tag 2.48.2i && git tag latest && git push && git push --tags
2828

2929
Push setup, first time only:
3030

@@ -35,17 +35,17 @@ Push setup, first time only:
3535

3636
Build a grid with extra nodes
3737

38-
docker run --rm --name=grid -p 4444:24444 -p 5920:25900 -v /dev/shm:/dev/shm -e VNC_PASSWORD=hola elgalu/selenium:2.48.2h
38+
docker run --rm --name=grid -p 4444:24444 -p 5920:25900 -v /dev/shm:/dev/shm -e VNC_PASSWORD=hola elgalu/selenium:2.48.2i
3939

40-
docker run --rm --name=node -e DISP_N=13 -e SSHD_PORT=22223 -e SUPERVISOR_HTTP_PORT=29003 -e VNC_PORT=25903 -e SELENIUM_NODE_CH_PORT=25330 -e SELENIUM_NODE_FF_PORT=25331 -e GRID=false -e CHROME=true -e FIREFOX=true --net=container:grid elgalu/selenium:2.48.2h
40+
docker run --rm --name=node -e DISP_N=13 -e SSHD_PORT=22223 -e SUPERVISOR_HTTP_PORT=29003 -e VNC_PORT=25903 -e SELENIUM_NODE_CH_PORT=25330 -e SELENIUM_NODE_FF_PORT=25331 -e GRID=false -e CHROME=true -e FIREFOX=true --net=container:grid elgalu/selenium:2.48.2i
4141

4242
See logs
4343

4444
docker exec -ti grid bash -c "ls -lah /var/log/sele/"
4545

4646
Testing in ssh [email protected]
4747

48-
docker run --rm --name=grid -p=4444:24444 -p=5920:25900 -p=2222:22222 -e SSH_AUTH_KEYS="$(cat ~/.ssh/authorized_keys)" -e VNC_PASSWORD=Hola3 os-registry.stups.zalan.do/tip/selenium:2.48.2h
48+
docker run --rm --name=grid -p=4444:24444 -p=5920:25900 -p=2222:22222 -e SSH_AUTH_KEYS="$(cat ~/.ssh/authorized_keys)" -e VNC_PASSWORD=Hola3 os-registry.stups.zalan.do/tip/selenium:2.48.2i
4949

5050
## Transfer used browser source artifacts to keep them in the cloud
5151

@@ -68,18 +68,18 @@ List firefox versions via docker exe
6868

6969
## To update image id and digest
7070

71-
docker inspect -f='{{.Id}}' elgalu/selenium:2.48.2h
71+
docker inspect -f='{{.Id}}' elgalu/selenium:2.48.2i
7272
docker images --digests
7373

7474
## Run with shared dir
7575

7676
docker run --rm --name=grid -p=127.0.0.1:4460:24444 -p=127.0.0.1:5910:25900 \
77-
-v /e2e/uploads:/e2e/uploads elgalu/selenium:2.48.2h
77+
-v /e2e/uploads:/e2e/uploads elgalu/selenium:2.48.2i
7878
docker run --rm --name=grid -p=4460:24444 -p=5910:25900 \
79-
-v /var/run/docker.sock:/var/run/docker.sock -v $(which docker):$(which docker) elgalu/selenium:2.48.2h
79+
-v /var/run/docker.sock:/var/run/docker.sock -v $(which docker):$(which docker) elgalu/selenium:2.48.2i
8080

8181

82-
docker run --rm --name=ff -p=127.0.0.1:4461:24444 -p=127.0.0.1:5911:25900 -v /e2e/uploads:/e2e/uploads elgalu/selenium:2.48.2h
82+
docker run --rm --name=ff -p=127.0.0.1:4461:24444 -p=127.0.0.1:5911:25900 -v /e2e/uploads:/e2e/uploads elgalu/selenium:2.48.2i
8383

8484
## Run without shared dir and bind ports to all network interfaces
8585

@@ -102,11 +102,11 @@ List firefox versions via docker exe
102102
## Run without dir and bind to all interfaces
103103
Note anything after the image will be taken as arguments for the cmd/entrypoint
104104

105-
docker run --rm --name=grid -p=0.0.0.0:8813:8484 -p=0.0.0.0:2222:2222 -p=0.0.0.0:4470:24444 -p=0.0.0.0:5920:25900 -e SCREEN_WIDTH=1800 -e SCREEN_HEIGHT=1110 -e VNC_PASSWORD=hola -e SSH_AUTH_KEYS="$(cat ~/.ssh/id_rsa.pub)" elgalu/selenium:2.48.2h
105+
docker run --rm --name=grid -p=0.0.0.0:8813:8484 -p=0.0.0.0:2222:2222 -p=0.0.0.0:4470:24444 -p=0.0.0.0:5920:25900 -e SCREEN_WIDTH=1800 -e SCREEN_HEIGHT=1110 -e VNC_PASSWORD=hola -e SSH_AUTH_KEYS="$(cat ~/.ssh/id_rsa.pub)" elgalu/selenium:2.48.2i
106106

107-
docker run --rm --name=grid -p=4470:24444 -p=5920:25900 -e VNC_PASSWORD=hola elgalu/selenium:2.48.2h
108-
docker run --rm --name=grid -p=4470:24444 -p=5920:25900 -e VNC_PASSWORD=hola docker.io/elgalu/selenium:2.48.2h
109-
docker run --rm --name=grid -p=0.0.0.0:4470:24444 -p=0.0.0.0:5920:25900 --add-host myserver.dev:172.17.42.1 elgalu/selenium:2.48.2h
107+
docker run --rm --name=grid -p=4470:24444 -p=5920:25900 -e VNC_PASSWORD=hola elgalu/selenium:2.48.2i
108+
docker run --rm --name=grid -p=4470:24444 -p=5920:25900 -e VNC_PASSWORD=hola docker.io/elgalu/selenium:2.48.2i
109+
docker run --rm --name=grid -p=0.0.0.0:4470:24444 -p=0.0.0.0:5920:25900 --add-host myserver.dev:172.17.42.1 elgalu/selenium:2.48.2i
110110

111111
However adding a custom host IP to server-selenium.local (e.g. bsele ssh config) is more work:
112112

@@ -115,18 +115,18 @@ However adding a custom host IP to server-selenium.local (e.g. bsele ssh config)
115115

116116
vncv localhost:5920 -Scaling=60% &
117117

118-
docker run --rm --name=ff -p=0.0.0.0:4471:24444 -p=0.0.0.0:5921:25900 elgalu/selenium:2.48.2h
118+
docker run --rm --name=ff -p=0.0.0.0:4471:24444 -p=0.0.0.0:5921:25900 elgalu/selenium:2.48.2i
119119

120120
Automatic builds not working for me right now, maybe there is an issue with docker registry v1 vs v2
121121
https://registry.hub.docker.com/u/elgalu/docker-selenium/builds_history/31621/
122122

123123
## Pulling
124124

125-
docker pull registry.hub.docker.com/elgalu/selenium:2.48.2h
125+
docker pull registry.hub.docker.com/elgalu/selenium:2.48.2i
126126

127127
## Pull
128128

129-
docker run -d --name=max -p=0.0.0.0:4411:24444 -p=0.0.0.0:5911:25900 elgalu/selenium:2.48.2h
129+
docker run -d --name=max -p=0.0.0.0:4411:24444 -p=0.0.0.0:5911:25900 elgalu/selenium:2.48.2i
130130

131131
How to connect through vnc (need a vnc client)
132132

docs/videos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
### Pull
66
Pull image
77

8-
docker pull elgalu/selenium:2.48.2h
8+
docker pull elgalu/selenium:2.48.2i
99

1010
### Run
1111
Run a new grid
1212

1313
docker run --rm --name=grid -p 4444:24444 -p 5920:25900 \
1414
-v /dev/shm:/dev/shm -e VNC_PASSWORD=hola \
15-
-e VIDEO=true elgalu/selenium:2.48.2h
15+
-e VIDEO=true elgalu/selenium:2.48.2i
1616

1717
### Wait
1818
Wait for the grid to start

0 commit comments

Comments
 (0)