Skip to content

Instantly share code, notes, and snippets.

@funvit
Forked from pwaller/docker-compose.yml
Created February 20, 2018 01:07
Show Gist options
  • Select an option

  • Save funvit/6ee63258bcada84b7a920026b455453a to your computer and use it in GitHub Desktop.

Select an option

Save funvit/6ee63258bcada84b7a920026b455453a to your computer and use it in GitHub Desktop.
selenium hub docker-compose file
hub:
image: selenium/hub
ports:
- "127.0.0.1:4444:4444"
chrome:
image: selenium/node-chrome-debug
links: [hub]
external_links:
- myapplication_frontend_1:pdftables
ports: ["127.0.0.1:5900:5900"]
environment:
- DBUS_SESSION_BUS_ADDRESS=/dev/null
volumes:
- /dev/shm:/dev/shm
- ./integration-data:/integration-data
firefox:
image: selenium/node-firefox-debug
links: [hub]
external_links:
- myapplication_frontend_1:pdftables
ports: ["127.0.0.1:5901:5900"]
environment:
- DBUS_SESSION_BUS_ADDRESS=/dev/null
volumes:
- ./integration-data:/integration-data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment