forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
59 lines (53 loc) · 985 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
postgres:
image: postgres:9.3
redis:
image: redis:2.6
selenium:
build: ./docker-compose/seleniumff
ports:
- "5900:5900"
kinesis:
build: ./docker-compose/kinesalite
command: "--path /var/lib/kinesalite"
volumes:
- "./tmp/cache:/var/lib/kinesalite"
ports:
- "4567:4567"
environment:
VIRTUAL_HOST: kinesis.docker
VIRTUAL_PORT: 4567
web:
build: ./docker-compose
command: bundle exec bin/rails s
ports:
- "3000:3000"
volumes:
- ".:/app"
links:
- postgres
- redis
- selenium
- kinesis
environment:
RACK_ENV: development
VIRTUAL_HOST: .canvas.docker
jobs:
build: ./docker-compose
command: bundle exec script/delayed_job run
volumes:
- ".:/app"
links:
- postgres
- redis
- kinesis
environment:
RACK_ENV: development
guard:
build: ./docker-compose
command: bundle exec guard -i
ports:
- "4000:4000"
volumes:
- ".:/app"
environment:
RACK_ENV: development