-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
58 lines (52 loc) · 1.21 KB
/
compose.yaml
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
services:
kafka:
extends:
file: deps.yaml
service: kafka
registry:
extends:
file: deps.yaml
service: registry
cli:
extends:
file: deps.yaml
service: cli
effective:
extends:
file: deps.yaml
service: effective
oracle:
extends:
file: deps.yaml
service: oracle
keycloak:
extends:
file: deps.yaml
service: keycloak
admin:
hostname: admin
container_name: admin
ports:
- 8443:8443
- 8080:8080
- 9990:9990
depends_on:
cli:
condition: service_healthy
keycloak:
condition: service_healthy
environment:
- BOOTSTRAP_SERVERS=kafka:9092
- SCHEMA_REGISTRY=http://registry:8081
- KEYCLOAK_REALM=test-realm
- KEYCLOAK_RESOURCE=jaws
- KEYCLOAK_SECRET=yHi6W2raPmLvPXoxqMA7VWbLAA2WN0eB
- KEYCLOAK_FRONTEND_SERVER_URL=http://localhost:8081
- KEYCLOAK_BACKEND_SERVER_URL=http://keycloak:8080
- KEYCLOAK_WAR=jaws.war
- ORACLE_PASS=password
- ORACLE_SERVER=oracle:1521
- ORACLE_SERVICE=xepdb1
- ORACLE_USER=JAWS_OWNER
# volumes:
# - ./server.p12:/opt/jboss/wildfly/standalone/configuration/server.p12