1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/selenium/docker-compose.yml

40 lines
763 B
YAML
Raw Normal View History

2021-09-16 07:46:38 +00:00
version: "3.8"
services:
hub:
image: selenium/hub:4
ports:
- "4442:4442"
- "4443:4443"
- "4444:4444"
restart: unless-stopped
chrome:
image: selenium/node-chrome:4
ports:
- "5900:5900"
2021-10-14 10:41:53 +00:00
- "7900:7900"
2021-09-16 07:46:38 +00:00
environment:
- SE_EVENT_BUS_HOST=hub
- SE_EVENT_BUS_PUBLISH_PORT=4442
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
2021-10-14 10:20:57 +00:00
- SE_NODE_OVERRIDE_MAX_SESSIONS=true
2021-09-16 07:46:38 +00:00
- SE_NODE_MAX_SESSIONS=4
shm_size: 2gb
depends_on:
- hub
restart: unless-stopped
video:
image: selenium/video
volumes:
- ./data:/videos
environment:
- DISPLAY_CONTAINER_NAME=chrome
- FILE_NAME=output.mp4
2021-10-14 10:20:57 +00:00
shm_size: 2gb
2021-10-14 10:41:53 +00:00
depends_on:
- chrome
2021-09-16 07:46:38 +00:00
restart: unless-stopped