forked from coderwall/coderwall-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fig.yml
40 lines (36 loc) · 741 Bytes
/
fig.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
postgres:
image: postgres
ports:
- "5432:5432"
redis:
image: redis:2.8.13
ports:
- "6379:6379"
elasticsearch:
image: barnybug/elasticsearch:0.90.13
ports:
- "9200:9200"
mongo:
image: mongo:2.4.10
ports:
- "27017:27017"
#web:
#build: .
#command: echo hello # foreman start -p 5000 web
#volumes:
#- .:/app
#ports:
#- "5000:5000"
#links:
#- postgres
#- redis
#- elasticsearch
#- mongo
#environment:
#- DEV_POSTGRES_USER=postgres
#- DEV_POSTGRES_HOST=postgres
#- STRIPE_SECRET_KEY=sk_test_BQokikJOvBiI2HlWgH4olfQ2
#- STRIPE_PUBLISHABLE_KEY=
#- REDIS_URL=redis://redis:6379
#- ELASTICSEARCH_URL=http://elasticsearch:9200
#- MONGO_URL=mongo:27017