This repository has been archived by the owner on Sep 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdocker-compose.yml
47 lines (47 loc) · 1.73 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
version: "3.3"
services:
qix-engine-std:
container_name: qix-engine-std
image: qlikcore/engine:12.1050.0
ports:
- 9076:9076
command: -S AcceptEULA=${ACCEPT_EULA} -S DocumentDirectory=/apps -S EnableGrpcCustomConnectors=1 -S GrpcConnectorPlugins="testconnector,corectl-test-connector:50051"
volumes:
- ./apps:/apps
- ./data:/data
qix-engine-jwt:
container_name: qix-engine-jwt
image: qlikcore/engine:12.1050.0
ports:
- 9176:9076
command: -S AcceptEULA=${ACCEPT_EULA} -S DocumentDirectory=/apps -S EnableGrpcCustomConnectors=1 -S GrpcConnectorPlugins="testconnector,corectl-test-connector:50051" -S ValidateJsonWebTokens=2 -S JsonWebTokenSecret=passw0rd -S
volumes:
- ./apps:/apps
- ./data:/data
qix-engine-abac:
container_name: qix-engine-abac
image: qlikcore/engine:12.1050.0
ports:
- 9276:9076
command: |
-S AcceptEULA=${ACCEPT_EULA} -S DocumentDirectory=/apps -S EnableGrpcCustomConnectors=1 -S GrpcConnectorPlugins="testconnector,corectl-test-connector:50051"
-S EnableABAC=1
-S SystemAllowRulePath=/rules/rules.txt
volumes:
- ./data:/data
- ./rules:/rules
qix-engine-bad-license-server:
container_name: qix-engine-bad-license-server
image: qlikcore/engine:12.1050.0
ports:
- 9376:9076
command: |
-S AcceptEULA=${ACCEPT_EULA} -S DocumentDirectory=/apps -S EnableGrpcCustomConnectors=1 -S GrpcConnectorPlugins="testconnector,corectl-test-connector:50051"
-S LicenseServiceUrl="doesnotexit:9090"
-S SystemLogVerbosity=5
volumes:
- ./apps:/apps
- ./data:/data
corectl-test-connector:
container_name: corectl-test-connector
build: testconnector