Skip to content

Ms sql service with full text search #25464

Answered by BrightRan
krasavindy asked this question in Actions
Discussion options

You must be logged in to vote

@krasavindy,

To install tools in a container, normally we have the two ways below:

  1. Add the following commands (see Install the mssql-server-fts on Ubuntu) to the RUN instruction in the Dockerfile. When building the image, the mssql-server-fts will be installed.

    sudo apt-get update 
    sudo apt-get install -y mssql-server-fts
    

    In this way, you need to create a customized docker image based on the official sql server docker image, and add above commands in the Dockerfile of the customized image. Then you can use this customized image in your workflow.

  2. If you do not want to create new image, after the container started, you can execute above commands in the container to install the mssql-se…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
2 participants