Skip to content

Commit

Permalink
update AD container OS
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed May 12, 2023
1 parent 3e3c697 commit 3679551
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
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

0 comments on commit 3679551

Please sign in to comment.