mirror of
https://github.com/manualdousuario/marreta.git
synced 2025-09-01 10:10:14 +00:00
43 lines
No EOL
1.3 KiB
YAML
43 lines
No EOL
1.3 KiB
YAML
services:
|
|
selenium-chromium:
|
|
container_name: selenium-chromium
|
|
image: selenium/node-chromium:4.27.0-20241204
|
|
shm_size: 2gb
|
|
environment:
|
|
- SE_EVENT_BUS_HOST=selenium-hub
|
|
- SE_EVENT_BUS_PUBLISH_PORT=4442
|
|
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
|
|
- SE_ENABLE_TRACING=false
|
|
- SE_NODE_MAX_SESSIONS=10
|
|
- SE_NODE_OVERRIDE_MAX_SESSIONS=true
|
|
entrypoint: bash -c 'SE_OPTS="--host $$HOSTNAME" /opt/bin/entry_point.sh'
|
|
depends_on:
|
|
- selenium-hub
|
|
networks:
|
|
- selenium
|
|
selenium-firefox:
|
|
container_name: selenium-firefox
|
|
image: selenium/node-firefox:4.27.0-20241204
|
|
shm_size: 2gb
|
|
environment:
|
|
- SE_EVENT_BUS_HOST=selenium-hub
|
|
- SE_EVENT_BUS_PUBLISH_PORT=4442
|
|
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
|
|
- SE_ENABLE_TRACING=false
|
|
- SE_NODE_MAX_SESSIONS=10
|
|
- SE_NODE_OVERRIDE_MAX_SESSIONS=true
|
|
entrypoint: bash -c 'SE_OPTS="--host $$HOSTNAME" /opt/bin/entry_point.sh'
|
|
depends_on:
|
|
- selenium-hub
|
|
selenium-hub:
|
|
image: selenium/hub:4.27.0-20241204
|
|
container_name: selenium-hub
|
|
environment:
|
|
- SE_ENABLE_TRACING=false
|
|
- GRID_MAX_SESSION=10
|
|
- GRID_BROWSER_TIMEOUT=10
|
|
- GRID_TIMEOUT=10
|
|
ports:
|
|
- 4442:4442
|
|
- 4443:4443
|
|
- 4444:4444 |