-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
196 lines (185 loc) · 4.36 KB
/
Copy pathdocker-compose.prod.yml
File metadata and controls
196 lines (185 loc) · 4.36 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
version: "2"
services:
nginx:
build:
context: ./nginx
dockerfile: Dockerfile.prod
image: chainify/nolik-nginx
container_name: nolik-nginx
ports:
- 80:80
- 443:443
depends_on:
- web
- api
- parser
- ipfs
- postgres
- redis
- sponsor
networks:
internal:
ipv4_address: 10.7.0.2
restart: always
web:
build: ./web
image: chainify/nolik-web
container_name: nolik-web
volumes:
- ./web:/opt
environment:
- CDM_VERSION=${CDM_VERSION}
- ASSET_ID=${ASSET_ID}
- CLIENT_SECRET=${CLIENT_SECRET}
- CLIENT_PREFIX=${CLIENT_PREFIX}
- API_HOST=${API_HOST}
- NETWORK=${NETWORK}
- WS_PORT=${WS_PORT}
- SPONSOR_HOST=${SPONSOR_HOST}
- CLIENT_SEED=${CLIENT_SEED}
restart: always
networks:
internal:
ipv4_address: 10.7.0.3
command: bash -c "npm install -y && npm run build && npm run start"
api:
build:
context: ./server
dockerfile: Dockerfile.prod
image: chainify/nolik-api
container_name: nolik-api
volumes:
- ./server:/opt
environment:
- ENV=${ENV}
- CDM_VERSION=${CDM_VERSION}
- API_VERSION=${API_VERSION}
- ORIGINS=${ORIGINS}
- ASSET_ID=${ASSET_ID}
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- REDIS_URL=${REDIS_URL}
- SPONSOR_PUBLIC_KEY=${SPONSOR_PUBLIC_KEY}
depends_on:
- ipfs
- postgres
- redis
tty: true
stdin_open: true
networks:
internal:
ipv4_address: 10.7.0.4
restart: always
command: bash -c "python3.7 server.py"
parser:
build:
context: ./parser
dockerfile: Dockerfile.prod
image: chainify/nolik-parser
container_name: nolik-parser
volumes:
- ./parser:/opt
depends_on:
- postgres
- ipfs
environment:
- ENV=${ENV}
- CDM_VERSION=${CDM_VERSION}
- ASSET_ID=${ASSET_ID}
- NODE_URL=${NODE_URL}
- START_HEIGHT=${START_HEIGHT}
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
command: bash -c "python3.7 server.py"
tty: true
stdin_open: true
networks:
internal:
ipv4_address: 10.7.0.5
labels:
- "autoheal=true"
restart: always
postgres:
build: ./postgresql
image: chainify/nolik-postgres
container_name: nolik-postgres
volumes:
- ~/.data/nolik/postgres:/var/lib/postgresql/data
ports:
- 5432:5432
environment:
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
tty: true
stdin_open: true
networks:
internal:
ipv4_address: 10.7.0.6
restart: always
ipfs:
image: ipfs/go-ipfs:latest
container_name: nolik-ipfs
volumes:
- /mnt/volume_fra1_02/.ipfs/data:/data/ipfs
- /mnt/volume_fra1_02/.ipfs/staging:/export
ports:
- 4001:4001
- 5001:5001
- 8080:8080
networks:
internal:
ipv4_address: 10.7.0.7
tty: true
stdin_open: true
restart: always
redis:
build: ./redis
image: chainify/nolik-redis
container_name: nolik-redis
volumes:
- ~/.data/nolik/redis:/data
tty: true
stdin_open: true
networks:
internal:
ipv4_address: 10.7.0.8
restart: always
autoheal:
image: willfarrell/autoheal:latest
container_name: nolik-autoheal
restart: always
networks:
internal:
ipv4_address: 10.7.0.9
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- AUTOHEAL_CONTAINER_LABEL=autoheal
sponsor:
build: ./sponsor
image: chainify/nolik-sponsor
container_name: nolik-sponsor
environment:
- SPONSOR_SEED=${SPONSOR_SEED}
- CLIENT_PUBLIC_KEY=${CLIENT_PUBLIC_KEY}
- ASSET_ID=${ASSET_ID}
- NETWORK=${NETWORK}
- NODE_URL=${NODE_URL}
- CLIENT_PREFIX=${CLIENT_PREFIX}
- CDM_VERSION=${CDM_VERSION}
networks:
internal:
ipv4_address: 10.7.0.10
tty: true
stdin_open: true
restart: unless-stopped
command: bash -c "npm install -y && node server.js"
networks:
internal:
driver: bridge
ipam:
config:
- subnet: 10.7.0.0/16