forked from Hawatel/rails5-api-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
55 lines (51 loc) · 1.01 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
version: '2'
services:
web:
environment:
- REDIS_URL=redis://redis:6379
build: .
command: bin/rails server --port 3000 --binding 0.0.0.0
ports:
- "3000:3000"
volumes:
- .:/app
volumes_from:
- bundle
links:
- redis
- postgres
depends_on:
- redis
postgres:
image: postgres:9.4
environment:
- POSTGRES_PASSWORD=SecurePasswordPG
ports:
- "5432:5432"
volumes:
- /tmp/rails5apistarter/postgresql:/var/lib/postgresql/data
redis:
image: redis
command: redis-server /app/config/redis.conf
volumes:
- .:/app
ports:
- "6379"
sidekiq:
image: rails5apistarter_web
environment:
- REDIS_URL=redis://redis:6379/12
links:
- redis
- postgres
depends_on:
- redis
volumes:
- '.:/app'
volumes_from:
- bundle
command: sidekiq -c 25 -q default
bundle:
image: rails5apistarter_web
volumes:
- /tmp/bundle:/bundle