-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-test.yml
More file actions
50 lines (50 loc) · 931 Bytes
/
docker-test.yml
File metadata and controls
50 lines (50 loc) · 931 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: "2.2"
networks:
default:
name: dev
services:
chromedriver:
build: check-web/chromedriver
ports:
- 5900:5900
- 4444:4444
volumes:
- "./check-web/test/spec/test.png:/app/test/spec/test.png"
- ".:/check-mark"
networks:
- dev
geckodriver:
build: geckodriver
ports:
- 4445:4444
- 5901:5900
volumes:
- ".:/check-mark"
- "/dev/shm:/dev/shm"
networks:
- dev
api:
environment:
RAILS_ENV: test
SERVER_PORT: 3000
api-background:
environment:
RAILS_ENV: test
SERVER_PORT: 3000
pender:
environment:
RAILS_ENV: test
SERVER_PORT: 3200
pender-background:
environment:
RAILS_ENV: test
SERVER_PORT: 3200
web:
depends_on:
- api
- chromedriver
environment:
PLATFORM: web
NODE_ENV: development
SERVER_PORT: 3333
MODE: test