blob: 2c3e178e2efeb9a661e5114ef58ed45fd2d2d2d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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
|