https://github.com/microdevops-com/docker-sphinxsearch-mssql
sphinxsearch docker image based on bionic with mssql
https://github.com/microdevops-com/docker-sphinxsearch-mssql
docker mssql sphinxsearch
Last synced: 2 months ago
JSON representation
sphinxsearch docker image based on bionic with mssql
- Host: GitHub
- URL: https://github.com/microdevops-com/docker-sphinxsearch-mssql
- Owner: microdevops-com
- License: gpl-3.0
- Created: 2020-06-22T18:46:42.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-23T21:30:09.000Z (almost 6 years ago)
- Last Synced: 2025-03-17T11:50:44.165Z (over 1 year ago)
- Topics: docker, mssql, sphinxsearch
- Language: Dockerfile
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-sphinxsearch-mssql
sphinxsearch docker image based on bionic with mssql
## sphinx.conf example
```
...
source source_name
{
type = odbc
sql_host = 1.2.3.4
sql_user = sa
sql_pass = password
sql_db = db
sql_port = 1433
odbc_dsn = DSN=db;Driver={/etc/odbc.ini};Uid=sa;Pwd=password;Database=db
}
...
```
## odbc.ini example (linked to sphinx conf volume)
```
[db]
Driver = ODBC Driver 17 for SQL Server
Server = tcp:1.2.3.4,1433
```