-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
41 lines (38 loc) · 1014 Bytes
/
Copy pathdocker-compose.prod.yml
File metadata and controls
41 lines (38 loc) · 1014 Bytes
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
version: '3'
services:
gql-schema-registry:
image: pipedrive/graphql-schema-registry:latest
ports:
- 6001:3000
- 6002:5850
environment:
- WITH_WEBPACK=${WITH_WEBPACK-1}
- DB_SCHEMA_REGISTRY=gql-schema-registry-db
restart: always
depends_on:
- gql-schema-registry-redis
- gql-schema-registry-db
networks:
gql-schema:
aliases:
- 'gql-schema-registry'
gql-schema-registry-worker:
image: pipedrive/graphql-schema-registry:latest
command: node app/worker/index.js
environment:
- SERVICE_NAME=gql-schema-registry-worker
- DB_SCHEMA_REGISTRY=gql-schema-registry-db
- REDIS_HOST=gql-schema-registry-redis
- REDIS_QUERIES_CHANNEL=graphql-queries
restart: always
depends_on:
- gql-schema-registry-redis
- gql-schema-registry-db
networks:
gql-schema:
aliases:
- 'gql-schema-registry'
networks:
gql-schema:
volumes:
gql-schema-registry-db-volume: