1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/docker-compose.yml

15 lines
369 B
YAML
Raw Normal View History

2018-06-26 16:55:17 -04:00
version: "3"
2018-04-24 18:47:53 -04:00
services:
2018-06-25 14:21:20 -04:00
selenium_chrome:
2018-04-24 18:47:53 -04:00
network_mode: "host"
image: "selenium/${SELENIUM_IMAGE:-standalone-chrome-debug}"
volumes:
- "/dev/shm:/dev/shm"
2018-06-25 14:21:20 -04:00
selenium_firefox:
network_mode: "host"
image: "selenium/${SELENIUM_IMAGE:-standalone-firefox-debug}"
volumes:
- "/dev/shm:/dev/shm"
environment:
- SE_OPTS=-port 4445