-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
45 lines (44 loc) · 1.22 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
version: "3"
services:
frontend:
image: ghcr.io/ingef/conquery-frontend:develop
environment:
- REACT_APP_API_URL=http://localhost:8088
- REACT_APP_IDP_ENABLE=false
- REACT_APP_IDP_REALM=''
- REACT_APP_IDP_CLIENT_ID=''
- REACT_APP_DISABLE_LOGIN=true
ports:
- "8000:80"
backend:
image: ghcr.io/ingef/conquery-backend:develop
command: server config.json
volumes:
- ./app/storage/manager:/app/storage
- ./config.json:/app/config.json
environment:
- CLUSTER_PORT=8082
- MANAGER_URL=backend
- JAVA_TOOL_OPTIONS=--add-opens=java.base/java.nio=ALL-UNNAMED
ports:
- 8088:8080
- 8081:8081
shard1:
image: ghcr.io/ingef/conquery-backend:develop
command: shard config.json
environment:
- CLUSTER_PORT=8082
- MANAGER_URL=backend
- FORM_BACKEND_URL=http://form-api:80
volumes:
- ./config.json:/app/config.json
- ./app/storage/shard-1:/app/storage
shard2:
image: ghcr.io/ingef/conquery-backend:develop
command: shard config.json
environment:
- CLUSTER_PORT=8082
- MANAGER_URL=backend
volumes:
- ./config.json:/app/config.json
- ./app/storage/shard-2:/app/storage