Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Merge pull request #144 from anton-kasperovich/feature/selenium_2_53_0
Browse files Browse the repository at this point in the history
Selenium Hub and Nodes update to 2.53.0 version, fix #90
  • Loading branch information
nickdgriffin authored Sep 26, 2016
2 parents 6ef652f + 09f8a3a commit 44d46c8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,28 +263,30 @@ jenkins-slave:
selenium-hub:
container_name: selenium-hub
restart: always
image: selenium/hub:2.46.0
image: selenium/hub:2.53.0
net: ${CUSTOM_NETWORK_NAME}
expose:
- "4444"

selenium-node-chrome:
container_name: selenium-node-chrome
restart: always
image: selenium/node-chrome:2.46.0
image: selenium/node-chrome:2.53.0
net: ${CUSTOM_NETWORK_NAME}
environment:
SE_OPTS: "-nodeConfig /var/selenium-config/config-chrome.json"
REMOTE_HOST: "http://selenium-node-chrome:5555"
HUB_PORT_4444_TCP_ADDR: "selenium-hub"
HUB_PORT_4444_TCP_PORT: "4444"

selenium-node-firefox:
container_name: selenium-node-firefox
restart: always
image: selenium/node-firefox:2.46.0
image: selenium/node-firefox:2.53.0
net: ${CUSTOM_NETWORK_NAME}
environment:
SE_OPTS: "-nodeConfig /var/selenium-config/config-firefox.json"
REMOTE_HOST: "http://selenium-node-firefox:5555"
HUB_PORT_4444_TCP_ADDR: "selenium-hub"
HUB_PORT_4444_TCP_PORT: "4444"

Expand Down

0 comments on commit 44d46c8

Please sign in to comment.