Skip to content

Commit

Permalink
docker-compose for local testenv
Browse files Browse the repository at this point in the history
  • Loading branch information
s4int committed Jun 3, 2020
1 parent 6f7f4ec commit 2948283
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions tests/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
version: '2'
services:
seleniumhub:
image: selenium/hub
ports:
- "4444:4444"

browsermobproxy:
image: bwowk/browsermob-proxy
ports:
- 8080:8080
- "8081-8200:8081-8200"

firefoxnode:
image: selenium/node-firefox
volumes:
- /dev/shm:/dev/shm
depends_on:
- seleniumhub
- browsermobproxy
environment:
HUB_HOST: hub
links:
- seleniumhub:hub
- browsermobproxy:proxy

chromenode:
image: selenium/node-chrome
volumes:
- /dev/shm:/dev/shm
depends_on:
- seleniumhub
- browsermobproxy
environment:
HUB_HOST: hub
links:
- seleniumhub:hub
- browsermobproxy:proxy

0 comments on commit 2948283

Please sign in to comment.