Skip to content

Commit 7da456d

Browse files
committed
3.14.0-gallium release
1 parent 05838ec commit 7da456d

File tree

16 files changed

+60
-60
lines changed

16 files changed

+60
-60
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Image(s):
1010
<!-- node-chrome? hub? standalone-firefox? -->
1111
Docker-Selenium Image Version(s):
12-
<!-- 3, 3.4, 3.14.0-francium etc -->
12+
<!-- 3, 3.4, 3.14.0-gallium etc -->
1313
Docker Version:
1414
<!-- 17.09.0-ce, 17.06.2-ce etc -->
1515
OS:

Hub/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:3.14.0-francium
5+
FROM selenium/base:3.14.0-gallium
66
LABEL authors=SeleniumHQ
77

88
USER seluser

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME := selenium
2-
VERSION := $(or $(VERSION),$(VERSION),3.14.0-francium)
2+
VERSION := $(or $(VERSION),$(VERSION),3.14.0-gallium)
33
NAMESPACE := $(or $(NAMESPACE),$(NAMESPACE),$(NAME))
44
AUTHORS := $(or $(AUTHORS),$(AUTHORS),SeleniumHQ)
55
PLATFORM := $(shell uname -s)

NodeBase/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:3.14.0-francium
5+
FROM selenium/base:3.14.0-gallium
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeChrome/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-base:3.14.0-francium
5+
FROM selenium/node-base:3.14.0-gallium
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeChromeDebug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-chrome:3.14.0-francium
5+
FROM selenium/node-chrome:3.14.0-gallium
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeChromeDebug/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3737
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
3838

3939
``` dockerfile
40-
FROM selenium/node-chrome-debug:3.14.0-francium
40+
FROM selenium/node-chrome-debug:3.14.0-gallium
4141

4242
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
4343
```

NodeDebug/README.template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3737
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
3838

3939
``` dockerfile
40-
FROM selenium/##BASE##-debug:3.14.0-francium
40+
FROM selenium/##BASE##-debug:3.14.0-gallium
4141

4242
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
4343
```

NodeFirefox/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-base:3.14.0-francium
5+
FROM selenium/node-base:3.14.0-gallium
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -27,7 +27,7 @@ RUN FIREFOX_DOWNLOAD_URL=$(if [ $FIREFOX_VERSION = "latest" ] || [ $FIREFOX_VERS
2727
# GeckoDriver
2828
#============
2929
ARG GECKODRIVER_VERSION=latest
30-
RUN GK_VERSION=$(if [ ${GECKODRIVER_VERSION:-latest} = "latest" ]; then echo $(wget -qO- "https://api.github.com/repos/mozilla/geckodriver/releases/latest" | grep '"tag_name":' | sed -E 's/.*"v([0-9.]+)".*/\1/'); else echo $GECKODRIVER_VERSION; fi) \
30+
RUN GK_VERSION=$(if [ ${GECKODRIVER_VERSION:-latest} = "latest" ]; then echo "0.23.0"; else echo $GECKODRIVER_VERSION; fi) \
3131
&& echo "Using GeckoDriver version: "$GK_VERSION \
3232
&& wget --no-verbose -O /tmp/geckodriver.tar.gz https://github.com/mozilla/geckodriver/releases/download/v$GK_VERSION/geckodriver-v$GK_VERSION-linux64.tar.gz \
3333
&& rm -rf /opt/geckodriver \

NodeFirefoxDebug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-firefox:3.14.0-francium
5+
FROM selenium/node-firefox:3.14.0-gallium
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeFirefoxDebug/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3737
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
3838

3939
``` dockerfile
40-
FROM selenium/node-firefox-debug:3.14.0-francium
40+
FROM selenium/node-firefox-debug:3.14.0-gallium
4141

4242
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
4343
```

README.md

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ Images included:
3131

3232
Chrome
3333
``` bash
34-
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.14.0-francium
34+
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.14.0-gallium
3535
#OR
36-
$ docker run -d -p 4444:4444 --shm-size=2g selenium/standalone-chrome:3.14.0-francium
36+
$ docker run -d -p 4444:4444 --shm-size=2g selenium/standalone-chrome:3.14.0-gallium
3737
```
3838
Firefox
3939
``` bash
40-
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.14.0-francium
40+
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.14.0-gallium
4141
#OR
42-
$ docker run -d -p 4444:4444 --shm-size 2g selenium/standalone-firefox:3.14.0-francium
42+
$ docker run -d -p 4444:4444 --shm-size 2g selenium/standalone-firefox:3.14.0-gallium
4343
```
4444
This is a known workaround to avoid the browser crashing inside a docker container, here are the documented issues for
4545
[Chrome](https://code.google.com/p/chromium/issues/detail?id=519952) and [Firefox](https://bugzilla.mozilla.org/show_bug.cgi?id=1338771#c10).
@@ -50,9 +50,9 @@ to tune this value according to your needs. Along the examples `-v /dev/shm:/dev
5050
### Standalone Chrome and Firefox
5151

5252
``` bash
53-
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.14.0-francium
53+
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.14.0-gallium
5454
# OR
55-
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.14.0-francium
55+
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.14.0-gallium
5656
```
5757

5858
_Note: Only one standalone image can run on port_ `4444` _at a time._
@@ -68,9 +68,9 @@ A docker [network](https://docs.docker.com/engine/reference/commandline/network_
6868

6969
``` bash
7070
$ docker network create grid
71-
$ docker run -d -p 4444:4444 --net grid --name selenium-hub selenium/hub:3.14.0-francium
72-
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-francium
73-
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-francium
71+
$ docker run -d -p 4444:4444 --net grid --name selenium-hub selenium/hub:3.14.0-gallium
72+
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-gallium
73+
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-gallium
7474
```
7575

7676
When you are done using the grid and the containers have exited, the network can be removed with the following command:
@@ -94,7 +94,7 @@ snippet as your `docker-compose.yaml`, save it locally and in the same folder ru
9494
version: '2'
9595
services:
9696
firefox:
97-
image: selenium/node-firefox:3.14.0-francium
97+
image: selenium/node-firefox:3.14.0-gallium
9898
volumes:
9999
- /dev/shm:/dev/shm
100100
depends_on:
@@ -103,7 +103,7 @@ services:
103103
HUB_HOST: hub
104104

105105
chrome:
106-
image: selenium/node-chrome:3.14.0-francium
106+
image: selenium/node-chrome:3.14.0-gallium
107107
volumes:
108108
- /dev/shm:/dev/shm
109109
depends_on:
@@ -112,7 +112,7 @@ services:
112112
HUB_HOST: hub
113113

114114
hub:
115-
image: selenium/hub:3.14.0-francium
115+
image: selenium/hub:3.14.0-gallium
116116
ports:
117117
- "4444:4444"
118118
```
@@ -124,19 +124,19 @@ services:
124124
version: "3"
125125
services:
126126
selenium-hub:
127-
image: selenium/hub:3.14.0-francium
127+
image: selenium/hub:3.14.0-gallium
128128
container_name: selenium-hub
129129
ports:
130130
- "4444:4444"
131131
chrome:
132-
image: selenium/node-chrome:3.14.0-francium
132+
image: selenium/node-chrome:3.14.0-gallium
133133
depends_on:
134134
- selenium-hub
135135
environment:
136136
- HUB_HOST=selenium-hub
137137
- HUB_PORT=4444
138138
firefox:
139-
image: selenium/node-firefox:3.14.0-francium
139+
image: selenium/node-firefox:3.14.0-gallium
140140
depends_on:
141141
- selenium-hub
142142
environment:
@@ -156,12 +156,12 @@ version: '3.7'
156156

157157
services:
158158
hub:
159-
image: selenium/hub:3.14.0-francium
159+
image: selenium/hub:3.14.0-gallium
160160
ports:
161161
- "4444:4444"
162162

163163
chrome:
164-
image: selenium/node-chrome:3.14.0-francium
164+
image: selenium/node-chrome:3.14.0-gallium
165165
environment:
166166
HUB_HOST: hub
167167
HUB_PORT: 4444
@@ -170,7 +170,7 @@ services:
170170
entrypoint: bash -c 'SE_OPTS="-host $$HOSTNAME" /opt/bin/entry_point.sh'
171171

172172
firefox:
173-
image: selenium/node-firefox:3.14.0-francium
173+
image: selenium/node-firefox:3.14.0-gallium
174174
environment:
175175
HUB_HOST: hub
176176
HUB_PORT: 4444
@@ -185,9 +185,9 @@ for longer term usage since this is a docker [legacy feature](https://docs.docke
185185
It could serve you as an option for a proof of concept, and for simplicity it is used in the examples shown from now on.
186186

187187
``` bash
188-
$ docker run -d -p 4444:4444 --name selenium-hub selenium/hub:3.14.0-francium
189-
$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-francium
190-
$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-francium
188+
$ docker run -d -p 4444:4444 --name selenium-hub selenium/hub:3.14.0-gallium
189+
$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-gallium
190+
$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-gallium
191191
```
192192

193193
### Deploying to Kubernetes
@@ -202,15 +202,15 @@ on how to deploy selenium hub and nodes on a Kubernetes cluster.
202202
You can pass `JAVA_OPTS` environment variable to java process.
203203

204204
``` bash
205-
$ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/hub:3.14.0-francium
205+
$ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/hub:3.14.0-gallium
206206
```
207207

208208
### SE_OPTS Selenium Configuration Options
209209

210210
You can pass `SE_OPTS` variable with additional commandline parameters for starting a hub or a node.
211211

212212
``` bash
213-
$ docker run -d -p 4444:4444 -e SE_OPTS="-debug" --name selenium-hub selenium/hub:3.14.0-francium
213+
$ docker run -d -p 4444:4444 -e SE_OPTS="-debug" --name selenium-hub selenium/hub:3.14.0-gallium
214214
```
215215

216216
### Selenium Hub and Node Configuration options
@@ -222,15 +222,15 @@ You can pass the `HUB_HOST` and `HUB_PORT` options to provide the hub address to
222222

223223
``` bash
224224
# Assuming a hub was already started on the default port
225-
$ docker run -d -e HUB_HOST=<hub_ip|hub_name> -e HUB_PORT=4444 selenium/node-chrome:3.14.0-francium
225+
$ docker run -d -e HUB_HOST=<hub_ip|hub_name> -e HUB_PORT=4444 selenium/node-chrome:3.14.0-gallium
226226
```
227227

228228
Some network topologies might prevent the hub to reach the node through the url given at registration time, `REMOTE_HOST`
229229
can be used to supply the hub a url where the node is reachable under your specific network configuration
230230

231231
``` bash
232232
# Assuming a hub was already started on the default port
233-
$ docker run -d -p <node_port>:5555 -e HUB_HOST=<hub_ip|hub_name> -e HUB_PORT=4444 -e REMOTE_HOST="http://<node_ip|node_name>:<node_port>" selenium/node-firefox:3.14.0-francium
233+
$ docker run -d -p <node_port>:5555 -e HUB_HOST=<hub_ip|hub_name> -e HUB_PORT=4444 -e REMOTE_HOST="http://<node_ip|node_name>:<node_port>" selenium/node-firefox:3.14.0-gallium
234234
```
235235

236236
### Setting Screen Resolution
@@ -251,7 +251,7 @@ environment variable `NODE_MAX_INSTANCES`. For example, a Firefox node with 5 sl
251251

252252
``` bash
253253
# Assuming a hub was already started
254-
$ docker run -d -e HUB_HOST=<hub_ip|hub_name> -e NODE_MAX_INSTANCES=5 selenium/node-firefox:3.14.0-francium
254+
$ docker run -d -e HUB_HOST=<hub_ip|hub_name> -e NODE_MAX_INSTANCES=5 selenium/node-firefox:3.14.0-gallium
255255
```
256256

257257
Don't forget to combine this with the environment variable `NODE_MAX_SESSION`, which sets the maximum amount of tests
@@ -260,7 +260,7 @@ should also be at least 5. Full example:
260260

261261
``` bash
262262
# Assuming a hub was already started
263-
$ docker run -d -e HUB_HOST=<hub_ip|hub_name> -e NODE_MAX_INSTANCES=5 -e NODE_MAX_SESSION=5 selenium/node-firefox:3.14.0-francium
263+
$ docker run -d -e HUB_HOST=<hub_ip|hub_name> -e NODE_MAX_INSTANCES=5 -e NODE_MAX_SESSION=5 selenium/node-firefox:3.14.0-gallium
264264
```
265265

266266
## Building the images
@@ -284,11 +284,11 @@ _Note: Omitting_ `VERSION=local` _will build the images with the current version
284284
##### Example: Spawn a container for testing in Chrome:
285285

286286
``` bash
287-
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.14.0-francium
287+
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.14.0-gallium
288288
$ CH=$(docker run --rm --name=ch \
289289
--link selenium-hub:hub -v /e2e/uploads:/e2e/uploads \
290290
-v /dev/shm:/dev/shm \
291-
selenium/node-chrome:3.14.0-francium)
291+
selenium/node-chrome:3.14.0-gallium)
292292
```
293293

294294
_Note:_ `-v /e2e/uploads:/e2e/uploads` _is optional in case you are testing browser uploads on your web app you will probably need to share a directory for this._
@@ -298,11 +298,11 @@ _Note:_ `-v /e2e/uploads:/e2e/uploads` _is optional in case you are testing brow
298298
This command line is the same as for Chrome. Remember that the Selenium running container is able to launch either Chrome or Firefox, the idea around having 2 separate containers, one for each browser is for convenience plus avoiding certain `:focus` issues your web app may encounter during end-to-end test automation.
299299

300300
``` bash
301-
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.14.0-francium
301+
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.14.0-gallium
302302
$ FF=$(docker run --rm --name=fx \
303303
--link selenium-hub:hub -v /e2e/uploads:/e2e/uploads \
304304
-v /dev/shm:/dev/shm \
305-
selenium/node-firefox:3.14.0-francium)
305+
selenium/node-firefox:3.14.0-gallium)
306306
```
307307

308308
_Note: Since a Docker container is not meant to preserve state and spawning a new one takes less than 3 seconds you will likely want to remove containers after each end-to-end test with_ `--rm` _command. You need to think of your Docker containers as single processes, not as running virtual machines, in case you are familiar with [Vagrant](https://www.vagrantup.com/)._
@@ -353,9 +353,9 @@ $ docker network create grid
353353
$ docker run -d -p 4444:4444 --net grid --name selenium-hub \
354354
--health-cmd='/opt/bin/check-grid.sh --host 0.0.0.0 --port 4444' \
355355
--health-interval=15s --health-timeout=30s --health-retries=5 \
356-
selenium/hub:3.14.0-francium
357-
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-francium
358-
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-francium
356+
selenium/hub:3.14.0-gallium
357+
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-gallium
358+
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-gallium
359359
```
360360
**Note:** The `\` line delimiter won't work on Windows based terminals, try either `^` or a backtick.
361361

@@ -406,27 +406,27 @@ Like this, the script will poll until the Grid is ready, and then your tests wil
406406

407407
In the event you wish to visually see what the browser is doing you will want to run the `debug` variant of node or standalone images. A VNC server will run on port 5900. You are free to map that to any free external port that you wish. Keep in mind that you will only be able to run one node per port so if you wish to include a second node, or more, you will have to use different ports, the 5900 as the internal port will have to remain the same though as thats the VNC service on the node. The second example below shows how to run multiple nodes and with different VNC ports open:
408408
``` bash
409-
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.14.0-francium
410-
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.14.0-francium
409+
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.14.0-gallium
410+
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.14.0-gallium
411411
```
412412
e.g.:
413413
``` bash
414-
$ docker run -d -P -p 5900:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.14.0-francium
415-
$ docker run -d -P -p 5901:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.14.0-francium
414+
$ docker run -d -P -p 5900:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.14.0-gallium
415+
$ docker run -d -P -p 5901:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.14.0-gallium
416416
```
417417
to connect to the Chrome node on 5900 and the Firefox node on 5901 (assuming those node are free, and reachable).
418418

419419
And for standalone:
420420
``` bash
421-
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.14.0-francium
421+
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.14.0-gallium
422422
# OR
423-
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.14.0-francium
423+
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.14.0-gallium
424424
```
425425
or
426426
``` bash
427-
$ docker run -d -p 4444:4444 -p 5900:5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.14.0-francium
427+
$ docker run -d -p 4444:4444 -p 5900:5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.14.0-gallium
428428
# OR
429-
$ docker run -d -p 4444:4444 -p 5901:5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.14.0-francium
429+
$ docker run -d -p 4444:4444 -p 5901:5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.14.0-gallium
430430
```
431431

432432
You can acquire the port that the VNC server is exposed to by running:
@@ -445,8 +445,8 @@ If you are running [Boot2Docker](https://docs.docker.com/installation/mac/) on O
445445

446446
When you are prompted for the password it is `secret`. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a Docker image that derives from the posted ones which reconfigures it:
447447
``` dockerfile
448-
#FROM selenium/node-chrome-debug:3.14.0-francium
449-
#FROM selenium/node-firefox-debug:3.14.0-francium
448+
#FROM selenium/node-chrome-debug:3.14.0-gallium
449+
#FROM selenium/node-firefox-debug:3.14.0-gallium
450450
#Choose the FROM statement that works for you.
451451
452452
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd

StandaloneChrome/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-chrome:3.14.0-francium
5+
FROM selenium/node-chrome:3.14.0-gallium
66
LABEL authors=SeleniumHQ
77

88
USER seluser

StandaloneChromeDebug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-chrome-debug:3.14.0-francium
5+
FROM selenium/node-chrome-debug:3.14.0-gallium
66
LABEL authors=SeleniumHQ
77

88
USER seluser

0 commit comments

Comments
 (0)