mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-11 17:49:15 +00:00
23 lines
526 B
YAML
23 lines
526 B
YAML
|
|
version: "3"
|
||
|
|
services:
|
||
|
|
selenium-hub:
|
||
|
|
image: selenium/hub:3.141.59-bismuth
|
||
|
|
container_name: selenium-hub
|
||
|
|
ports:
|
||
|
|
- "4444:4444"
|
||
|
|
chrome:
|
||
|
|
image: selenium/node-chrome-debug:3.141.59-bismuth
|
||
|
|
depends_on:
|
||
|
|
- selenium-hub
|
||
|
|
environment:
|
||
|
|
- HUB_HOST=selenium-hub
|
||
|
|
- HUB_PORT=4444
|
||
|
|
ports:
|
||
|
|
- "5900:5900"
|
||
|
|
# firefox:
|
||
|
|
# image: selenium/node-firefox:3.141.59-bismuth
|
||
|
|
# depends_on:
|
||
|
|
# - selenium-hub
|
||
|
|
# environment:
|
||
|
|
# - HUB_HOST=selenium-hub
|
||
|
|
# - HUB_PORT=4444
|