1
0
mirror of https://github.com/pi-hole/docker-pi-hole.git synced 2024-06-29 20:50:53 +02:00

remove 127.0.0.1 dns as that is supposed to no longer be an issue I think

This commit is contained in:
diginc 2018-01-25 12:46:52 -06:00
parent 62ddf72d15
commit 4ab2a96552

View File

@ -8,7 +8,7 @@ check_output = testinfra.get_backend(
def DockerGeneric(request, args, image, cmd):
assert 'docker' in check_output('id'), "Are you in the docker group?"
if 'pi-hole' in image:
args += " --dns 127.0.0.1 -v /dev/null:/etc/pihole/adlists.default -e PYTEST=\"True\""
args += " -v /dev/null:/etc/pihole/adlists.default -e PYTEST=\"True\""
docker_run = "docker run -d {} {} {}".format(args, image, cmd)
print docker_run
docker_id = check_output(docker_run)