52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
services:
|
|
# undetected-chromedriver:
|
|
# # image: git.matthiasg.dev/ninluc/selenium/standalone-uc:latest
|
|
# image: selenium/standalone-chrome:latest
|
|
# # build:
|
|
# # context: ./
|
|
# # dockerfile: seleniumChromedriverDockerfile
|
|
# volumes:
|
|
# - /tmp:/tmp
|
|
# - chromeProfile:/home/seluser/profile/
|
|
# shm_size: 2gb
|
|
# tty: true
|
|
# ports:
|
|
# - "4444:4444"
|
|
# - "7900:7900"
|
|
|
|
undetected-chromedriver-node:
|
|
# image: git.matthiasg.dev/ninluc/selenium/standalone-uc:latest
|
|
# image: selenium/node-chrome:latest
|
|
build:
|
|
context: ./
|
|
dockerfile: seleniumChromedriverDockerfile
|
|
volumes:
|
|
- /tmp:/tmp
|
|
- chromeProfile:/home/seluser/profile/
|
|
shm_size: 2gb
|
|
tty: true
|
|
environment:
|
|
- SE_EVENT_BUS_HOST=selenium-hub
|
|
- SE_EVENT_BUS_PUBLISH_PORT=4442
|
|
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
|
|
ports:
|
|
- "7900:7900"
|
|
networks:
|
|
- selenium-grid
|
|
|
|
selenium-hub:
|
|
image: selenium/hub:latest
|
|
tty: true
|
|
ports:
|
|
- "4442-4444:4442-4444"
|
|
networks:
|
|
- selenium-grid
|
|
|
|
|
|
networks:
|
|
selenium-grid:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
chromeProfile:
|