forked from cerner/terra-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
32 lines (29 loc) · 887 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
version: '3'
services:
standalone-chrome:
image: 'selenium/standalone-chrome:3.14.0-helium'
ports:
- '4444'
# Necessary due to some issues with chrome in docker. See https://github.com/SeleniumHQ/docker-selenium#running-the-images
volumes:
- '/dev/shm:/dev/shm'
# Necessary to lock down screen sizes for our screen shot comparisons.
environment:
TZ: 'America/Chicago'
dev:
image: cerner/terra-node-dev:1
ports:
- 8080:8080
depends_on:
- standalone-chrome
volumes:
- .:/opt/module
standalone-chrome-travis:
image: selenium/standalone-chrome:3.14.0-helium
ports:
- 4444:4444
# Necessary due to some issues with chrome in docker. See https://github.com/SeleniumHQ/docker-selenium#running-the-images
volumes:
- '/dev/shm:/dev/shm'
environment:
TZ: 'America/Chicago'