forked from Zegorax/SAMLPortal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
74 lines (71 loc) · 2.48 KB
/
docker-compose.yml
File metadata and controls
74 lines (71 loc) · 2.48 KB
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
68
69
70
71
72
73
74
version: "3.3"
services:
samlportal:
image: samlportal/samlportal:latest
restart: always
ports:
- 8081:80
volumes:
- ./SAMLPortal/data:/data
db:
image: mysql:latest
restart: always
environment:
MYSQL_ROOT_PASSWORD: samlportal
MYSQL_DATABASE: samlportal
MYSQL_USER: samlportal
MYSQL_PASSWORD: samlportal
volumes:
- ./db-data:/var/lib/mysql
openldap:
image: osixia/openldap:latest
restart: always
environment:
LDAP_LOG_LEVEL: "256"
LDAP_ORGANIZATION: "SAMLPortal"
LDAP_DOMAIN: "saml.portal"
LDAP_BASE_DN: ""
#LDAP_ADMIN_PASSWORD: "admin"
#LDAP_CONFIG_PASSWORD: "config"
#LDAP_READONLY_USER: "false"
#LDAP_READONLY_USER_USERNAME: "readonly"
#LDAP_READONLY_USER_PASSWORD: "readonly"
LDAP_RFC2307BIS_SCHEMA: "false"
LDAP_BACKEND: "mdb"
LDAP_TLS: "false"
#LDAP_TLS_CRT_FILENAME: "ldap.crt"
#LDAP_TLS_KEY_FILENAME: "ldap.key"
#LDAP_TLS_DH_PARAM_FILENAME: "dhparam.pem"
#LDAP_TLS_CA_CRT_FILENAME: "ca.crt"
#LDAP_TLS_ENFORCE: "false"
#LDAP_TLS_CIPHER_SUITE: "SECURE256:-VERS-SSL3.0"
#LDAP_TLS_PROTOCOL_MIN: "3.1"
#LDAP_TLS_VERIFY_CLIENT: "demand"
LDAP_REPLICATION: "false"
#LDAP_REPLICATION_CONFIG_SYNCPROV: "binddn="cn=admin,cn=config" bindmethod=simple credentials=$LDAP_CONFIG_PASSWORD searchbase="cn=config" type=refreshAndPersist retry="60 +" timeout=1 starttls=critical"
#LDAP_REPLICATION_DB_SYNCPROV: "binddn="cn=admin,$LDAP_BASE_DN" bindmethod=simple credentials=$LDAP_ADMIN_PASSWORD searchbase="$LDAP_BASE_DN" type=refreshAndPersist interval=00:00:00:10 retry="60 +" timeout=1 starttls=critical"
#LDAP_REPLICATION_HOSTS: "#PYTHON2BASH:['ldap://ldap.example.org','ldap://ldap2.example.org']"
KEEP_EXISTING_CONFIG: "true"
LDAP_REMOVE_CONFIG_AFTER_SETUP: "true"
#LDAP_SSL_HELPER_PREFIX: "ldap"
tty: true
stdin_open: true
volumes:
- ./openldap/data:/var/lib/ldap
- ./openldap/slapd:/etc/ldap/slapd.d
- ./openldap/certs:/container/service/slapd/assets/certs/
# ports:
# - "127.0.0.1:389:389"
# - "172.17.0.1:389:389"
# - "636:636"
# - 389:389
domainname: "saml.portal" # important: same as hostname
hostname: "saml.portal"
phpldapadmin:
image: osixia/phpldapadmin:latest
container_name: phpldapadmin
environment:
PHPLDAPADMIN_LDAP_HOSTS: "openldap"
PHPLDAPADMIN_HTTPS: "false"
ports:
- 8082:80