Skip to content

Instantly share code, notes, and snippets.

@Gaboso
Created July 17, 2018 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gaboso/7278c6585883584ecaec02f48ff6ac88 to your computer and use it in GitHub Desktop.
Save Gaboso/7278c6585883584ecaec02f48ff6ac88 to your computer and use it in GitHub Desktop.
Install command Full-Text Search in Docker image
export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install -y curl && \
curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - && \
curl https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-2017.list | tee /etc/apt/sources.list.d/mssql-server.list && \
apt-get update && \
apt-get install -y mssql-server-fts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment