-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.yml
131 lines (131 loc) · 3.05 KB
/
docker-compose.dev.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
version: '2'
services:
worker:
image: dukedataservice_server
volumes_from:
- localdev
entrypoint: ['rake', 'workers:run']
links:
- db:postgres.db.host
- neo4j:neo4j.db.host
- elasticsearch:elastic.local
- rabbitmq:rabbitmq.host
env_file:
- webapp.env
- swift.env
- neo4j.client.env
- elastic.client.env
- rabbitmq.client.env
rails:
image: dukedataservice_server
volumes_from:
- localdev
entrypoint: ['rails']
links:
- db:postgres.db.host
- neo4j:neo4j.db.host
- elasticsearch:elastic.local
- rabbitmq:rabbitmq.host
env_file:
- webapp.env
- swift.env
- neo4j.client.env
- elastic.client.env
- rabbitmq.client.env
bundle:
image: dukedataservice_server
volumes_from:
- localdev
entrypoint: ['bundle']
erd:
image: dukedataservice_server
volumes_from:
- localdev
entrypoint: ['erd']
links:
- db:postgres.db.host
- neo4j:neo4j.db.host
- elasticsearch:elastic.local
- rabbitmq:rabbitmq.host
env_file:
- webapp.env
- swift.env
- neo4j.client.env
- elastic.client.env
- rabbitmq.client.env
rake:
image: dukedataservice_server
volumes_from:
- localdev
entrypoint: ['rake']
links:
- db:postgres.db.host
- neo4j:neo4j.db.host
- elasticsearch:elastic.local
- rabbitmq:rabbitmq.host
env_file:
- webapp.env
- swift.env
- neo4j.client.env
- elastic.client.env
- rabbitmq.client.env
authservice:
image: dukedataservice_server
env_file:
- auth_service.env
- neo4j.client.env
- elastic.client.env
- rabbitmq.client.env
volumes_from:
- localdev
entrypoint: ['rake']
command: auth_service:openid:create
links:
- db:postgres.db.host
- neo4j:neo4j.db.host
- elasticsearch:elastic.local
- rabbitmq:rabbitmq.host
rspec:
image: dukedataservice_server
environment:
- RAILS_ENV=test
- OPENID_CLIENT_ID=test
- OPENID_CLIENT_SECRET=testpass
- OPENID_URL=http://oit.oauth.edu
volumes_from:
- localdev
links:
- db:postgres.db.host
- neo4j:neo4j.db.host
- elasticsearch:elastic.local
- rabbitmq:rabbitmq.host
env_file:
- webapp.env
- swift.env
- neo4j.client.env
- elastic.client.env
- rabbitmq.client.env
entrypoint: ['rspec']
command: spec
dredd:
build: ./docker/builds/dredd
links:
- server:dds.host
volumes:
- ./docker/builds/dredd/dredd_scripts:/home/dredd_scripts/
- ./apiary.apib:/home/dredd_scripts/apiary.apib
apiary:
build: ./docker/builds/apiary
volumes_from:
- localdev
validateapiary:
image: dukedataservice_apiary
volumes_from:
- localdev
entrypoint: ['api-blueprint-validator']
command: api_docs/apiary.apib
genapiary:
image: dukedataservice_apiary
volumes_from:
- localdev
entrypoint: ['bin/gen_apiary.sh']