-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.prod.yml
55 lines (51 loc) · 1.01 KB
/
docker-compose.prod.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: '3'
services:
app:
build: .
image: osp-app:0.18-dev
volumes:
- .:/app
- bundle:/usr/local/bundle
- node_modules:/app/node_modules
environment:
- PORT=3000
- REDIS_URL=redis://redis:6379
- DATABASE_HOST=pg
- DATABASE_USERNAME=postgres
- RAILS_ENV=production
ports:
- 3000:3000
links:
- pg
- redis
command: ["puma"]
entrypoint: /app/docker-entrypoint.sh
pg:
image: postgres:11
volumes:
- pg-data:/var/lib/postgresql/data
sidekiq:
build: .
image: osp-app:0.18-dev
command: ["sidekiq", "-C", "config/sidekiq.yml"]
environment:
- REDIS_URL=redis://redis:6379
- RAILS_ENV=production
- DATABASE_HOST=pg
- DATABASE_USERNAME=postgres
depends_on:
- app
links:
- pg
- redis
redis:
image: redis
ports:
- 6379:6379
volumes:
- redis-data:/var/lib/redis/data
volumes:
node_modules: {}
bundle: {}
pg-data: {}
redis-data: {}