Skip to content

Commit 096a914

Browse files
committed
Add support for Firefox 49 and latest/previous ESR versions
1 parent 2e7c1c2 commit 096a914

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

NodeFirefox/Dockerfile.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update -qqy \
1010
&& rm -rf /var/lib/apt/lists/* \
1111
&& apt-get -y purge firefox
1212
ENV FIREFOX_VERSION 47.0.1
13-
RUN for VERSION in 48.0.2 47.0.1 46.0.1 45.0.2; do \
13+
RUN for VERSION in 49.0.1 48.0.2 47.0.1 45.4.0esr 38.8.0esr; do \
1414
wget --no-verbose -O /tmp/firefox-$VERSION.tar.bz2 https://download-installer.cdn.mozilla.net/pub/firefox/releases/$VERSION/linux-x86_64/en-US/firefox-$VERSION.tar.bz2 \
1515
&& mkdir -p /opt/firefox/$VERSION \
1616
&& tar -C /opt/firefox/$VERSION --strip-components 1 -xjf /tmp/firefox-$VERSION.tar.bz2 \

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,23 @@ By default the latest stable versions will be used, however you can override
6262
these using the following environment variables:
6363

6464
- `SELENIUM_VERSION` - version of the Selenium server
65+
- latest stable: `2.53.1`
66+
- latest beta: `3.0.0-beta3`
6567
- `FIREFOX_VERSION` - version of Firefox (only applies to Firefox images)
68+
- latest release: `49.0.1`
69+
- previous release: `48.0.2`
70+
- latest ESR: `45.4.0esr`
71+
- previous ESR: `38.8.0esr`
72+
73+
Note that as the latest releases of Firefox work best with Selenium 3.0, which
74+
is currently in beta, the latest release supported by 2.53.x is `47.0.1` and is
75+
also available (and the default).
6676

6777
For example, the following will start a standalone server using Selenium 3.0.0-beta3
68-
and Firefox 48.0.2:
78+
and Firefox 49.0.1:
6979

7080
```bash
71-
$ docker run -d -p 4444:4444 -e SELENIUM_VERSION=3.0.0-beta3 -e FIREFOX_VERSION=48.0.2 selenium/standalone-firefox:latest
81+
$ docker run -d -p 4444:4444 -e SELENIUM_VERSION=3.0.0-beta3 -e FIREFOX_VERSION=49.0.1 selenium/standalone-firefox:latest
7282
```
7383

7484
### JAVA_OPTS Java Environment Options

0 commit comments

Comments
 (0)