1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-26 05:27:31 +02:00
dockerfiles/selenium/grid/docker-compose-hub.yml

17 lines
319 B
YAML
Raw Normal View History

2021-05-28 16:16:06 +08:00
version: '3.8'
2019-05-10 15:31:34 +08:00
services:
2021-05-28 16:16:06 +08:00
hub:
2022-01-11 17:33:20 +08:00
image: selenium/hub:4
2019-05-10 15:31:34 +08:00
ports:
2022-01-11 17:33:20 +08:00
- "4442:4442"
- "4443:4443"
2019-05-10 15:31:34 +08:00
- "4444:4444"
healthcheck:
test: ["CMD", "/opt/bin/check-grid.sh", "--host", "127.0.0.1", "--port", "4444"]
interval: 15s
timeout: 30s
retries: 5
restart: unless-stopped