-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
67 lines (50 loc) · 1.21 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
version: '3'
services:
integrated:
image: conciso/seacon2017-integrated
container_name: integrated
ports:
- "8081:8080"
links:
- haproxy:ldap
federated:
image: conciso/seacon2017-federated
container_name: federated
ports:
- "8082:8080"
keycloak:
image: jboss/keycloak:3.0.0.Final
container_name: keycloak
volumes:
- ./keycloak:/tmp/realm
ports:
- "9080:8080"
links:
- haproxy:ldap
command: -b 0.0.0.0 -Dkeycloak.migration.action=import -Dkeycloak.migration.provider=singleFile -Dkeycloak.migration.file=/tmp/realm/realm.json
haproxy:
image: haproxy:1.7.5
container_name: haproxy
volumes:
- ./haproxy:/usr/local/etc/haproxy
links:
- openldap:openldap
ports:
- "1936:1936"
- "389:389"
openldap:
image: osixia/openldap:1.1.8
container_name: openldap
volumes:
- ./openldap/database:/var/lib/ldap
- ./openldap/config:/etc/ldap/slapd.d
phpldapadmin:
image: osixia/phpldapadmin:latest
container_name: phpldapadmin
environment:
PHPLDAPADMIN_LDAP_HOSTS: "openldap"
PHPLDAPADMIN_HTTPS: "false"
ports:
- "10080:80"
links:
- openldap:openldap