Skip to content

Commit dafeff9

Browse files
committed
initial commit
1 parent ca707c4 commit dafeff9

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# General
2+
.DS_Store
3+
.AppleDouble
4+
.LSOverride
5+
6+
# Icon must end with two \r
7+
Icon
8+
9+
10+
# Thumbnails
11+
._*
12+
13+
# Files that might appear in the root of a volume
14+
.DocumentRevisions-V100
15+
.fseventsd
16+
.Spotlight-V100
17+
.TemporaryItems
18+
.Trashes
19+
.VolumeIcon.icns
20+
.com.apple.timemachine.donotpresent
21+
22+
# Directories potentially created on remote AFP share
23+
.AppleDB
24+
.AppleDesktop
25+
Network Trash Folder
26+
Temporary Items
27+
.apdisk
28+

docker-compose.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: '3.0'
2+
services:
3+
ldap:
4+
image: osixia/openldap:1.4.0
5+
ports:
6+
- "389:389"
7+
- "636:636"
8+
environment:
9+
- LDAP_ORGANISATION="My Company"
10+
- LDAP_DOMAIN="my-company.com"
11+
- LDAP_ADMIN_PASSWORD="JonSn0w"
12+
volumes:
13+
- /tmp/ldap_db/:/var/lib/ldap/
14+
- /tmp/ldap_conf/:/etc/ldap/slapd.d/
15+
hostname: "my-company.com" # used for TLS generation
16+
networks:
17+
main:
18+
ipv4_address: 172.16.238.10
19+
20+
21+
lui:
22+
image: osixia/phpldapadmin:0.9.0
23+
ports:
24+
- "6443:443"
25+
environment:
26+
- PHPLDAPADMIN_LDAP_HOSTS=172.16.238.10
27+
networks:
28+
- main
29+
30+
networks:
31+
main:
32+
ipam:
33+
driver: default
34+
config:
35+
- subnet: "172.16.238.0/24"

0 commit comments

Comments
 (0)