Skip to content

Instantly share code, notes, and snippets.

@pwaller
Last active February 20, 2018 01:07
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pwaller/60bb77fab33892809331 to your computer and use it in GitHub Desktop.
Save pwaller/60bb77fab33892809331 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