forked from PopulateTools/gobierto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
103 lines (96 loc) · 1.89 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
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
web:
build: .
dockerfile: Dockerfile
command: ./script/server
env_file: .env
environment:
- RAILS_ENV=development
- RACK_ENV=development
- DISABLE_SPRING=true
- RAILS_LOG_TO_STDOUT=true
- PG_HOST=postgres
- PG_USERNAME=postgres
- ELASTICSEARCH_URL=http://elasticsearch:9200
- MAILCATCHER_HOST=mailcatcher
- BUNDLE_PATH=/bundle
- PYTHONUNBUFFERED=1
- REDIS_URL=redis://redis:6379
volumes:
- .:/app
volumes_from:
- bundle
ports:
- "3000:3000"
links:
- postgres
- elasticsearch
- mailcatcher
- redis
test:
build: .
dockerfile: Dockerfile-test
command: ./script/test
env_file: .env
environment:
- RAILS_ENV=test
- RACK_ENV=test
- DISABLE_SPRING=true
- RAILS_LOG_TO_STDOUT=true
- PG_HOST=postgres
- PG_USERNAME=postgres
- ELASTICSEARCH_URL=http://elasticsearch:9200
- BUNDLE_PATH=/bundle
- PYTHONUNBUFFERED=1
- REDIS_URL=redis://redis:6379
volumes_from:
- web
links:
- postgres
- elasticsearch
- redis
sidekiq:
image: gobierto_web
command: ./script/sidekiq_server
env_file: .env
environment:
- RAILS_ENV=development
- RACK_ENV=development
- DISABLE_SPRING=true
- RAILS_LOG_TO_STDOUT=true
- PG_HOST=postgres
- PG_USERNAME=postgres
- ELASTICSEARCH_URL=http://elasticsearch:9200
- MAILCATCHER_HOST=mailcatcher
- BUNDLE_PATH=/bundle
- PYTHONUNBUFFERED=1
- REDIS_URL=redis://redis:6379
volumes_from:
- web
links:
- postgres
- elasticsearch
- mailcatcher
- redis
bundle:
image: busybox
volumes:
- /bundle
postgres:
image: postgres:9.6.1
ports:
- "5432"
elasticsearch:
build: .
dockerfile: Dockerfile-elasticsearch
ports:
- "9200:9200"
- "9300"
mailcatcher:
image: schickling/mailcatcher
ports:
- "1025"
- "1080:1080"
redis:
image: redis:3.0
ports:
- "6379"