1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

Workaround to disable mssql telemetry in DockerFile (#294)

This commit is contained in:
Mart124 2018-05-24 21:56:55 +02:00 committed by Kyle Spearrin
parent ffe5f37a64
commit 1b1ec7629b
2 changed files with 3 additions and 5 deletions

View File

@ -16,5 +16,8 @@ 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
ENTRYPOINT ["/entrypoint.sh"]

View File

@ -66,9 +66,4 @@ chown $USERNAME:$GROUPNAME /backup-db.sql
env >> /etc/environment
cron
# Workaround to disable mssql telemetry
echo "127.0.0.1 settings-win.data.microsoft.com" >> /etc/hosts
echo "127.0.0.1 vortex.data.microsoft.com" >> /etc/hosts
gosu $USERNAME:$GROUPNAME /opt/mssql/bin/sqlservr