forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
64 lines (58 loc) · 1.23 KB
/
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
60
61
62
63
64
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 is turbo-slow because it relies on polling to see updates
# (because the volume is shared over NFS, so no inotify stuff.)
# This probably isn't a good solution for you if you're doing lots
# of js/css development. It may take minutes for changes to be
# reflected.
guard:
build: ./docker-compose
command: bundle exec guard -i -p
ports:
- "4000:4000"
volumes:
- ".:/app"
environment:
RACK_ENV: development