-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
74 lines (67 loc) · 1.53 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version: "3"
services:
webclient:
container_name: datatorch-webclient
image: gcr.io/datatorch/webclient:latest
depends_on:
- graphql
- postgres
- redis
environment:
- BACKEND=http://graphql:4000/graphql
ports:
- 3000:3000
graphql:
container_name: datatorch-graphql
image: gcr.io/datatorch/graphql:latest
depends_on:
- postgres
- redis
volumes:
- data:/app/data
environment:
- SECRET=<RandomGeneratedValue>
- LICENSE_EMAIL=<LicenseEmail>
- LICENSE_KEY=<LicenseKey>
- DATABASE_HOST=postgres
- DATABASE_NAME=postgres
- DATABASE_USERNAME=postgres
- DATABASE_PASSWORD=postgrespassword
- PRINT_CONFIG=false
ports:
- 4000:4000
bullmq:
container_name: datatorch-bullmq
image: gcr.io/datatorch/bullmq:latest
volumes:
- data:/app/data
depends_on:
- postgres
- redis
# pgadmin:
# container_name: datatorch-pgadmin
# image: dpage/pgadmin4:latest
# depends_on:
# - postgres
# ports:
# - 53621:80
# environment:
# PGADMIN_DEFAULT_EMAIL: [email protected]
# PGADMIN_DEFAULT_PASSWORD: postgrespassword
redis:
container_name: datatorch-redis
image: redis:5-alpine
ports:
- 6379:6379
postgres:
container_name: datatorch-postgres
image: postgres:12-alpine
volumes:
- pgdata:/var/lib/postgresql/data
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: postgrespassword
volumes:
data:
pgdata: