Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lmenezes/cerebro-docker
official cerebro docker image
https://github.com/lmenezes/cerebro-docker
Last synced: about 2 months ago
JSON representation
official cerebro docker image
- Host: GitHub
- URL: https://github.com/lmenezes/cerebro-docker
- Owner: lmenezes
- Created: 2018-06-21T11:28:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-27T07:35:15.000Z (over 1 year ago)
- Last Synced: 2024-10-12T22:10:05.647Z (3 months ago)
- Language: Dockerfile
- Size: 18.6 KB
- Stars: 118
- Watchers: 7
- Forks: 40
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
cerebro-docker
--------------[![Docker Pulls](https://img.shields.io/docker/pulls/lmenezes/cerebro.svg)](https://hub.docker.com/r/lmenezes/cerebro)
cerebro-docker contains the official docker files for [cerebro](https://github.com/lmenezes/cerebro) project.
Images are periodically uploaded in [lmenezes/cerebro](https://hub.docker.com/r/lmenezes/cerebro/) docker hub repo.### Usage
For using latest cerebro execute:
```
docker run -p 9000:9000 lmenezes/cerebro
```For using a specific version run:
```
docker run -p 9000:9000 lmenezes/cerebro:0.8.3
```### Configuration
You can configure a custom port for cerebro by using the `CEREBRO_PORT` environment variable. This defaults to `9000`.
**Example**
```
docker run -e CEREBRO_PORT=8080 -p 8080:8080 lmenezes/cerebro
```
To access an elasticsearch instance running on localhost:
```
docker run -p 9000:9000 --network=host lmenezes/cerebro
```