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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Workbench/ad/Dockerfile
@@ -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
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
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
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