forked from HyperCable/hypercable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.production.yaml
131 lines (120 loc) · 2.73 KB
/
docker-compose.production.yaml
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: '3.7'
services:
base: &base
image: hooopo/hypercable:latest
env_file: .env.production
postgres:
image: postgres:12
restart: always
ports:
- '4432:5432'
volumes:
- postgres:/data/postgres
environment:
- POSTGRES_DB=hypercable_prod
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=password
tsdb:
image: timescale/timescaledb:2.0.1-pg12
#image: timescale/timescaledb:latest-pg12
restart: always
ports:
- '5532:5432'
volumes:
- postgres:/data/tsdb
environment:
- POSTGRES_DB=tsdb_prod
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=password
redis:
image: redis:alpine
restart: always
command: ["sh", "-c", "redis-server --requirepass \"$REDIS_PASSWORD\""]
env_file: .env.production
volumes:
- redis:/data/redis
ports:
- '6380:6379'
openresty:
tty: true
restart: always
stdin_open: true
ports:
- '8000:8000'
image: hooopo/hypercable-openresty:latest
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
depends_on:
- redis
geoipupdate:
container_name: geoipupdate
image: maxmindinc/geoipupdate
restart: unless-stopped
env_file: .env.production
environment:
- 'GEOIPUPDATE_EDITION_IDS=GeoLite2-ASN GeoLite2-City GeoLite2-Country'
- GEOIPUPDATE_FREQUENCY=72
networks:
- geoipupdate
volumes:
- 'geoipupdate_data:/usr/share/GeoIP/'
rails:
<<: *base
image: hooopo/hypercable:latest
dns:
- 8.8.8.8
restart: always
volumes:
- ./:/app:delegated
- node_modules:/app/node_modules
- packs:/app/public/packs
- cache:/app/tmp/cache
- bundle:/usr/local/bundle
depends_on:
- postgres
- tsdb
- redis
- sidekiq
ports:
- 3333:3000
env_file: .env.production
environment:
- NODE_ENV=production
- RAILS_ENV=production
entrypoint: docker/entrypoints/rails.sh
command: ["bundle", "exec", "rails", "s", "-p", "3000", "-b", "0.0.0.0"]
sidekiq:
<<: *base
image: hooopo/hypercable:latest
dns:
- 8.8.8.8
restart: always
volumes:
- ./:/app:delegated
- node_modules:/app/node_modules
- packs:/app/public/packs
- cache:/app/tmp/cache
- bundle:/usr/local/bundle
- 'geoipupdate_data:/usr/share/GeoIP/'
depends_on:
- postgres
- tsdb
- redis
- geoipupdate
environment:
- NODE_ENV=production
- RAILS_ENV=production
command: ["bundle", "exec", "sidekiq", "-C", "config/sidekiq.yml"]
networks:
geoipupdate:
volumes:
postgres:
tsdb:
redis:
packs:
node_modules:
cache:
bundle:
geoipupdate_data:
driver: local