1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-08 19:11:31 +00:00
dockerfiles/selenium/grid/docker-compose-hub.yml

17 lines
319 B
YAML
Raw Normal View History

2021-05-28 08:16:06 +00:00
version: '3.8'
2019-05-10 07:31:34 +00:00
services:
2021-05-28 08:16:06 +00:00
hub:
2022-01-11 09:33:20 +00:00
image: selenium/hub:4
2019-05-10 07:31:34 +00:00
ports:
2022-01-11 09:33:20 +00:00
- "4442:4442"
- "4443:4443"
2019-05-10 07:31:34 +00: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