8000 GitHub - fanjinfei/docker-fess: Docker files for Fess
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fanjinfei/docker-fess

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker for Fess

See https://hub.docker.com/r/codelibs/fess/.

Docker Images

What is Fess ?

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.

Getting Started

Run Fess

You can access http://localhost:8080 from the host OS with:

$ docker run -d -p 8080:8080 --name fess codelibs/fess:latest

Run Fess with Kibana

To monitoring Fess logs with Kibana, run Fess and Kibana with these commands:

$ docker run -d -p 8080:8080 --name fess codelibs/fess:latest
$ docker run -d -e ELASTICSEARCH_URL=http://localhost:9200 \
    --name kibana kibana:latest

and import settings with following this link.

Run Fess with Your Data/Config

To save data and config for Fess/Elasticsearch, use -v option for mount host directory:

$ mkdir ./data
$ sudo chown 1000:1000 ./data
$ docker run -d -p 8080:8080 --name fess \
    -v $PWD/fess/config:/opt/fess \
    -v $PWD/es/config:/etc/elasticsearch \
    -v $PWD/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.

Set ES_JAVA_OPTS

To set ES_JAVA_OPTS, use -e option:

$ docker run -e 'ES_JAVA_OPTS="-Xms2g -Xmx2g"' -d -p 8080:8080 codelibs/fess:snapshot

Kernel settings

Elasticsearch needs to set vm.max_map_count to at least 262144. See Install Elasticsearch with Docker.

Build

To build docker images, run as below:

$ docker build --rm -t codelibs/fess:<tag name> ./<version_dir>/

License

Apache license.

About

Docker files for Fess

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 66.3%
  • Shell 33.7%
0