Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/codelibs/docker-fess

Docker files for Fess
https://github.com/codelibs/docker-fess

docker docker-image fess

Last synced: 6 days ago
JSON representation

Docker files for Fess

Awesome Lists containing this project

README

        

Docker for Fess
=====

See [Docker Images](https://github.com/codelibs/docker-fess/pkgs/container/fess/versions).

## 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 OpenSearch/Elasticsearch-based search server, but knowledge/experience about OpenSearch/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](http://fess.codelibs.org/).

## Getting Started

### Kernel settings

OpenSearch/Elasticsearch needs to set vm.max\_map\_count to at least 262144. See [Important settings](https://opensearch.org/docs/latest/install-and-configure/install-opensearch/index/#important-settings).

### Run Fess

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

```console
$ git clone https://github.com/codelibs/docker-fess.git
$ cd docker-fess/compose
$ docker compose -f compose.yaml -f compose-opensearch2.yaml up -d
```
For more details, please see [compose](https://github.com/codelibs/docker-fess/tree/master/compose).

## Build

### Fess

To build docker images, run as below:

```console
$ docker build --rm -t ghcr.io/codelibs/fess: ./fess//
```

### OpenSearch

```console
$ docker build --rm -t ghcr.io/codelibs/fess-opensearch: ./opensearch//
```

### Elasticsearch

```console
$ docker build --rm -t ghcr.io/codelibs/fess-elasticsearch: ./elasticsearch//
```

## License

[Apache License 2.0](LICENSE)