mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
14 lines
369 B
YAML
14 lines
369 B
YAML
version: "3"
|
|
services:
|
|
selenium_chrome:
|
|
network_mode: "host"
|
|
image: "selenium/${SELENIUM_IMAGE:-standalone-chrome-debug}"
|
|
volumes:
|
|
- "/dev/shm:/dev/shm"
|
|
selenium_firefox:
|
|
network_mode: "host"
|
|
image: "selenium/${SELENIUM_IMAGE:-standalone-firefox-debug}"
|
|
volumes:
|
|
- "/dev/shm:/dev/shm"
|
|
environment:
|
|
- SE_OPTS=-port 4445
|