-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
61 lines (57 loc) · 1.47 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
services:
keycloak:
image: quay.io/keycloak/keycloak:24.0.5
env_file:
- ./config/global.env
command: [ "--verbose", "start-dev" ]
environment:
DEBUG: "true"
DEBUG_PORT: "*:8787"
JAVA_OPTS_APPEND: "-Djava.net.preferIPv4Stack=true"
KC_LOG_LEVEL: info,org.vaulttec:debug
ports:
- "8080:8080"
- "8787:8787"
volumes:
- ./target/confluence-ldap-group-mapper.jar:/opt/keycloak/providers/confluence-ldap-group-mapper.jar:z
extra_hosts:
- "host.docker.internal:host-gateway"
depends_on:
- openldap
- mockserver
keycloak-provisioning:
image: quay.io/adorsys/keycloak-config-cli:6.1.5-24.0.5
env_file:
- ./config/global.env
volumes:
- ./config/realms/:/config/:z
depends_on:
- keycloak
openldap:
image: osixia/openldap:1.5.0
env_file:
- ./config/global.env
command: [ "--copy-service", "--loglevel", "warning" ]
ports:
- "1389:389"
- "1636:636"
volumes:
- ./config/ldap/acme.ldif:/tmp/ldif/acme.ldif:z
phpldapadmin:
image: osixia/phpldapadmin:latest
environment:
PHPLDAPADMIN_LDAP_HOSTS: "openldap"
PHPLDAPADMIN_HTTPS: "false"
command: [ "--loglevel", "warning" ]
ports:
- "17080:80"
depends_on:
- openldap
mockserver:
image: mockserver/mockserver:5.15.0
env_file:
- ./config/global.env
ports:
- "1080:1080"
volumes:
- ./config/mock/:/config/:z