From 8f3df46075ed9c43b0ece46138314324b14d843c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 20 Nov 2019 09:47:46 -0500 Subject: [PATCH] remove black hole for telemetry --- util/MsSql/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/util/MsSql/Dockerfile b/util/MsSql/Dockerfile index c2e7d5fb1..d921e860b 100644 --- a/util/MsSql/Dockerfile +++ b/util/MsSql/Dockerfile @@ -18,9 +18,6 @@ RUN chmod +x /entrypoint.sh \ && chmod +x /backup-db.sh RUN /opt/mssql/bin/mssql-conf set telemetry.customerfeedback false -# As the setting above does not work, let's use the workaround below -RUN echo 127.0.0.1 settings-win.data.microsoft.com >> /etc/hosts -RUN echo 127.0.0.1 vortex.data.microsoft.com >> /etc/hosts HEALTHCHECK --timeout=3s CMD /opt/mssql-tools/bin/sqlcmd \ -S localhost -U sa -P ${SA_PASSWORD} -Q "SELECT 1" || exit 1