forked from laradock/laradock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Manticore Search (laradock#2036)
* Add Manticore Search
- Loading branch information
1 parent
6c8adbc
commit 8ca26e6
Showing
5 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM manticoresearch/manticore | ||
|
||
EXPOSE 9306 | ||
EXPOSE 9308 | ||
EXPOSE 9312 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
index testrt { | ||
type = rt | ||
rt_mem_limit = 128M | ||
path = /var/lib/manticore/data/testrt | ||
rt_field = title | ||
rt_field = content | ||
rt_attr_uint = gid | ||
} | ||
|
||
searchd { | ||
listen = 9312 | ||
listen = 9308:http | ||
listen = 9306:mysql41 | ||
log = /var/lib/manticore/log/searchd.log | ||
# you can also send query_log to /dev/stdout to be shown in docker logs | ||
query_log = /var/lib/manticore/log/query.log | ||
read_timeout = 5 | ||
max_children = 30 | ||
pid_file = /var/run/searchd.pid | ||
seamless_rotate = 1 | ||
preopen_indexes = 1 | ||
unlink_old = 1 | ||
binlog_path = /var/lib/manticore/data | ||
} | ||
|