17 lines
377 B
YAML
17 lines
377 B
YAML
# https://github.com/amardeep2006/ldap-activedirectory-samba/
|
|
version: "3.4"
|
|
services:
|
|
ldap.example.org:
|
|
restart: "no"
|
|
hostname: "ldap.example.org"
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
privileged: true
|
|
expose:
|
|
- "636"
|
|
ports:
|
|
- "636:636"
|
|
environment:
|
|
SMB_ADMIN_PASSWORD: "admin123!"
|
|
AD_DOMAIN: "DEV-AD" |