1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 09:04:12 +02:00

fix ldap admin

This commit is contained in:
Robin Appelman 2026-03-09 17:56:14 +01:00
commit 04b8ec975d

View file

@ -115,7 +115,10 @@ impl ServiceTrait for LdapAdmin {
});
let config = ContainerCreateBody {
image: Some(image.into()),
env: Some(vec!["PHPLDAPADMIN_LDAP_HOSTS=ldap".into()]),
env: Some(vec![
"PHPLDAPADMIN_LDAP_HOSTS=ldap".into(),
"PHPLDAPADMIN_HTTPS=false".into(),
]),
host_config: Some(HostConfig {
network_mode: Some(network.to_string()),
..Default::default()