Skip to content

Commit

Permalink
Bump to v3.6.1 (#25)
Browse files Browse the repository at this point in the history
* Bump to v3.6.1

http://sphinxsearch.com/downloads/current/

* Update README.md
  • Loading branch information
macbre authored Dec 6, 2023
1 parent 0505e81 commit 2f3f62d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM --platform=linux/amd64 alpine:3.18

# https://sphinxsearch.com/blog/
ENV SPHINX_VERSION 3.5.1-82c60cb
ENV SPHINX_VERSION 3.6.1-c9dbeda

# install dependencies
RUN apk add --no-cache mariadb-connector-c-dev \
Expand All @@ -14,13 +14,13 @@ RUN apk add --no-cache mariadb-connector-c-dev \
RUN mkdir -pv /opt/sphinx/logs /opt/sphinx/indexes
VOLUME /opt/sphinx/indexes

# http://sphinxsearch.com/downloads/sphinx-3.5.1-82c60cb-linux-amd64-musl.tar.gz
# http://sphinxsearch.com/downloads/sphinx-3.6.1-c9dbeda-linux-amd64-musl.tar.gz
RUN wget http://sphinxsearch.com/files/sphinx-${SPHINX_VERSION}-linux-amd64-musl.tar.gz -O /tmp/sphinxsearch.tar.gz \
&& cd /opt/sphinx && tar -xf /tmp/sphinxsearch.tar.gz \
&& rm /tmp/sphinxsearch.tar.gz

# point to sphinx binaries
ENV PATH "${PATH}:/opt/sphinx/sphinx-3.5.1/bin"
ENV PATH "${PATH}:/opt/sphinx/sphinx-3.6.1/bin"
RUN indexer -v

# redirect logs to stdout
Expand Down
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can use this image in `docker-compose`-powered app:
```yaml
services:
sphinx:
image: macbre/sphinxsearch:3.5.1
image: macbre/sphinxsearch:3.6.1
ports:
- "127.0.0.1:36307:36307" # bind to local interface only!
volumes:
Expand All @@ -32,7 +32,7 @@ or you can provide your custom config file:
```yaml
services:
sphinx:
image: macbre/sphinxsearch:3.5.1
image: macbre/sphinxsearch:3.6.1
environment:
- SPHINX_CONFIG_FILE=/opt/sphinx/conf/my_custom_file.conf
ports:
Expand All @@ -50,6 +50,24 @@ Read more at https://lukaszherok.com/post/view/9/Running%20SphinxSearch%20in%20P

## [Tags available](https://hub.docker.com/r/macbre/sphinxsearch/tags/)

### `3.6.1`, `latest`

```
Sphinx 3.6.1 (commit c9dbedabf)
Copyright (c) 2001-2023, Andrew Aksyonoff
Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)

Built on: #1-Alpine SMP Tue, 19 Jul 2022 15:30:18 +0000
Built with: GNU 10.3.1
Build date: Oct 4 2023
Build type: release
Configure flags: cmake
Compiled DB drivers: mysql-dynamic pgsql-dynamic odbc-dynamic
Compiled features: libexpat libstemmer re2 jemalloc
Versions: binlog_format v.10, index_format v.63, udf_api v.23
Enabled dynamic drivers: mysql pgsql
```
### `3.5.1`, `latest`
```
Expand Down

0 comments on commit 2f3f62d

Please sign in to comment.