Skip to content

Commit

Permalink
Add basic docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
greglo authored and Greg O'Connor committed Nov 15, 2016
1 parent 974b1bc commit 658f644
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions Dockerfile/dockerfile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://docs.docker.com/engine/reference/builder/
Empty file added README.md
Empty file.
Empty file added compose/docker-compose.md
Empty file.
18 changes: 18 additions & 0 deletions compose/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: "2"

services:
selenium:
image: selenium/hub:2.53.0
container_name: selenium
ports:
- "4444:4444"

chrome:
image: selenium/node-chrome-debug:2.53.0
depends_on:
- selenium
environment:
- HUB_PORT_4444_TCP_ADDR=selenium
- HUB_PORT_4444_TCP_PORT=4444
ports:
- "5901:5900"

0 comments on commit 658f644

Please sign in to comment.