Skip to content

Instantly share code, notes, and snippets.

View rrieunier's full-sized avatar

Roman Rieunier rrieunier

View GitHub Profile
@rrieunier
rrieunier / docker-compose.yml
Created October 9, 2023 15:04 — forked from bjongbloedt/docker-compose.yml
docker-compose selenium grid (w/healthcheck)
version: "3"
services:
hub:
image: selenium/hub
ports:
- "4444:4444"
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:4444/grid/api/proxy"]
interval: 10s
timeout: 5s