Skip to content

Instantly share code, notes, and snippets.

@CristianoRC
Created July 20, 2020 11:09
Show Gist options
  • Save CristianoRC/89aa3863dde24d12c4d5f04dbff63df8 to your computer and use it in GitHub Desktop.
Save CristianoRC/89aa3863dde24d12c4d5f04dbff63df8 to your computer and use it in GitHub Desktop.
Docker SQL Server with Full-Text Search (FTS)
FROM mcr.microsoft.com/mssql/server:2017-latest
RUN 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-2017.list && \
apt-get update
RUN apt-get install -y mssql-server-fts
CMD /opt/mssql/bin/sqlservr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment