forked from YOU54F/template-wdio-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
27 lines (26 loc) · 1.35 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
version: '2.2'
services:
webdriverio:
build: ./Dockerfile
image: webdriverio
depends_on:
- chromedriver
volumes:
- ./src:/src
environment:
- WAIT_FOR_HOSTS=chromedriver:4444 chromedriver:5900
chromedriver:
image: selenium/standalone-chrome-debug
ports:
- 5900:5900
# selenium/base: Base image which includes Java runtime and Selenium Server JAR file
# selenium/hub: Image for running a Grid Hub
# selenium/node-base: Base image for Grid Nodes which includes a virtual desktop environment
# selenium/node-chrome: Grid Node with Chrome installed, needs to be connected to a Grid Hub
# selenium/node-firefox: Grid Node with Firefox installed, needs to be connected to a Grid Hub
# selenium/node-chrome-debug: Grid Node with Chrome installed and runs a VNC server, needs to be connected to a Grid Hub
# selenium/node-firefox-debug: Grid Node with Firefox installed and runs a VNC server, needs to be connected to a Grid Hub
# selenium/standalone-chrome: Selenium Standalone with Chrome installed
# selenium/standalone-firefox: Selenium Standalone with Firefox installed
# selenium/standalone-chrome-debug: Selenium Standalone with Chrome installed and runs a VNC server
# selenium/standalone-firefox-debug: Selenium Standalone with Firefox installed and runs a VNC server