nextcloud/apps/files_external/tests/start-apache.sh
Robin Appelman b9ce7647f1 Update kerberos sso test setup to use new user_saml config system
Signed-off-by: Robin Appelman <robin@icewind.nl>
Signed-off-by: Louis Chemineau <louis@chmn.me>
2023-04-25 13:40:18 +02:00

11 lines
465 B
Bash
Executable file

#!/usr/bin/env bash
docker rm -f apache 2>/dev/null > /dev/null
docker run -d --name apache -v $2:/var/www/html -v /tmp/shared:/shared --dns $1 --hostname httpd.domain.test icewind1991/samba-krb-test-apache 1>&2
APACHE_IP=$(docker inspect apache --format '{{.NetworkSettings.IPAddress}}')
# add the dns record for apache
docker exec dc samba-tool dns add krb.domain.test domain.test httpd A $APACHE_IP -U administrator --password=passwOrd1 1>&2
echo $APACHE_IP