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
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,12 @@ 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
-
## v2.46.0-03 (2015-07-18)
7
+
## v2.46.0-04 (2015-07-18)
8
8
+ Fix bug openbox X manager not waiting for Xvfb. (Leo Gallucci)
9
9
+ Fix entry.sh exiting immediately and not checking DISABLE_ROLLBACK.
10
10
+ Allow to choose X manager flavor via `-e XMANAGER=openbox|fluxbox`
11
+
+ Fix bug in wait-docker-selenium.sh
12
+
+ Fix bug while docker stop $NAME; supervisor not getting SIGINT properly.
11
13
+ Image tag details:
12
14
+ Selenium: v2.46.0 (87c69e2)
13
15
+ Chrome stable: 43.0.2357.134
@@ -23,8 +25,8 @@ Note image ids also change after scm-source.json has being updated which trigger
Copy file name to clipboardExpand all lines: README.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Note SeleniumHQ/docker-selenium project is more useful for building selenium gri
19
19
In general: add `sudo` only if needed in your environment and `--privileged` if you really need it.
20
20
21
21
sudo docker run --privileged -p 4444:24444 -p 5920:25900 \
22
-
-e VNC_PASSWORD=hola elgalu/selenium:v2.46.0-03
22
+
-e VNC_PASSWORD=hola elgalu/selenium:v2.46.0-04
23
23
24
24
### Non-privileged
25
25
### Run
@@ -31,7 +31,7 @@ If your setup is correct, privileged mode and sudo should not be necessary:
31
31
-e SCREEN_WIDTH=1920 -e SCREEN_HEIGHT=1080 \
32
32
-e VNC_PASSWORD=hola \
33
33
-e SSH_AUTH_KEYS="$(cat ~/.ssh/id_rsa.pub)" \
34
-
elgalu/selenium:v2.46.0-03
34
+
elgalu/selenium:v2.46.0-04
35
35
36
36
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 `ch` is the name of the container:
37
37
@@ -96,7 +96,7 @@ You can lunch a grid only container via environment variables:
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.
102
102
@@ -112,7 +112,7 @@ You can lunch a node only container via environment variables:
112
112
-p 25550:25550 -p 25551:25551 \
113
113
-e GRID=false -e CHROME=true -e FIREFOX=true \
114
114
-v $(pwd)/videos:/videos \
115
-
elgalu/selenium:v2.46.0-03
115
+
elgalu/selenium:v2.46.0-04
116
116
117
117
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.
118
118
@@ -136,17 +136,17 @@ There are also additional steps you can take to ensure you're using the correct
136
136
### Option 1 - Use immutable image digests
137
137
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:
@@ -271,7 +271,7 @@ If you git clone this repo locally, i.e. cd into where the Dockerfile is, you ca
271
271
272
272
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