Skip to content

update AD container OS #148

Merged
merged 1 commit into from
May 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Workbench/ad/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:xenial
FROM ubuntu:22.04
# based on work at https://github.com/Fmstrat/samba-domain

ENV DEBIAN_FRONTEND noninteractive
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@
$servers->setValue('server','base',array('dc=ad,dc=example,dc=edu'));
$servers->setValue('login','auth_type','cookie');
$servers->setValue('login','bind_id','CN=Administrator,CN=Users,DC=ad,DC=example,DC=edu');
$servers->setValue('login','bind_pass','Supersecret1!');
$servers->setValue('login','bind_pass','Password1');
$servers->setValue('server','tls',false);

/*
Expand Down
4 changes: 3 additions & 1 deletion Workbench/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -566,9 +566,11 @@ services:
ad:
build:
context: ./ad/
cap_add:
- CAP_SYS_ADMIN
environment:
- DOMAIN=ad.example.edu
- DOMAINPASS=Supersecret1!
- DOMAINPASS=Password1
hostname: dc1
networks:
net:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<gen475:authenticationType>simple</gen475:authenticationType>
<gen475:bindDn>CN=Administrator,CN=Users,DC=ad,DC=example,DC=edu</gen475:bindDn>
<gen475:bindPassword>
<t:clearValue>Supersecret1!</t:clearValue>
<t:clearValue>Password1</t:clearValue>
</gen475:bindPassword>
<gen475:baseContext>DC=ad,DC=example,DC=edu</gen475:baseContext>
<gen475:readSchema>true</gen475:readSchema>
Expand Down