See https://hub.docker.com/r/codelibs/fess/.
latest
,13
,13.4
,13.4.x
(13.4/Dockerfile)13.3
,13.3.x
(13.3/Dockerfile)13.2
,13.2.x
(13.2/Dockerfile)13.1
,13.1.x
(13.1/Dockerfile)13.0
,13.0.x
(13.0/Dockerfile)12.7
,12.7.x
(12.7/Dockerfile)12.6
,12.6.x
(12.6/Dockerfile)12.5
,12.5.x
(12.5/Dockerfile)12.4
,12.4.x
(12.4/Dockerfile)12.3
,12.3.x
(12.3/Dockerfile)12.2
,12.2.x
(12.2/Dockerfile)12.1
,12.1.x
(12.1/Dockerfile)12.0
,12.0.x
(12.1/Dockerfile)11
,11.4
,11.4.x
(11.4/Dockerfile)11.3
,11.3.x
(11.3/Dockerfile)11.2
,11.2.x
(11.2/Dockerfile)11.1
,11.1.x
(11.1/Dockerfile)11.0
,11.0.x
(11.0/Dockerfile)10
,10.3
,10.3.x
(10.3/Dockerfile)10.2
,10.2.x
(10.2/Dockerfile)10.1
,10.1.x
(10.1/Dockerfile)10.0
,10.0.x
(10.0/Dockerfile)snapshot
(snapshot/Dockerfile)
Fess is very powerful and easily deployable Enterprise Search Server. You can install and run Fess quickly on any platforms, which have Java runtime environment. Fess is provided under Apache license.
Fess is Elasticsearch-based search server, but knowledge/experience about Elasticsearch is NOT needed because of All-in-One Enterprise Search Server. Fess provides Administration GUI to configure the system on your browser. Fess also contains a crawler, which can crawl documents on Web/File System/DB and support many file formats, such as MS Office, pdf and zip.
For more info, access Fess official documentation.
You can access http://localhost:8080 from the host OS with:
$ docker run -d -p 8080:8080 --name fess codelibs/fess:latest
See docker-compose.yml.
To save data and config for Fess/Elasticsearch, use -v option for mount host directory:
$ mkdir -p ./data/fess/config data/es/{config,data}
$ sudo chown -R 1001:1001 ./data/fess
$ sudo chown -R 1000:1000 ./data/es
$ docker run -d -p 8080:8080 --name fess \
-v $PWD/data/fess/config:/opt/fess \
-v $PWD/data/es/config:/etc/elasticsearch \
-v $PWD/data/es/data:/var/lib/elasticsearch codelibs/fess:latest
You can put fess_config.properties to fess/config directory.
If you want to use a default setting for Elasticsearch, remove -v $PWD/es/config:/etc/elasticsearch
.
To set ES_JAVA_OPTS, use -e option:
$ docker run -e 'ES_JAVA_OPTS="-Xms2g -Xmx2g"' -d -p 8080:8080 codelibs/fess:snapshot
Elasticsearch needs to set vm.max_map_count to at least 262144. See Install Elasticsearch with Docker.
To build docker images, run as below:
$ docker build --rm -t codelibs/fess:<tag name> ./<version_dir>/
$ docker build --rm -t codelibs/fess-elasticsearch:<tag name> ./elasticsearch/<version_dir>/