https://github.com/fesabelilla/elk-vectordb-docker-compose
A lightweight, production-ready ELK (Elasticsearch, Logstash, Kibana) stack deployed using Docker Compose. Provides a simple, containerized solution for centralized log management, analysis, and visualization with minimal configuration required. Ideal for development and small-scale logging infrastructures.
https://github.com/fesabelilla/elk-vectordb-docker-compose
docker docker-compose elasticsearch kibana logstash vector-database
Last synced: about 1 year ago
JSON representation
A lightweight, production-ready ELK (Elasticsearch, Logstash, Kibana) stack deployed using Docker Compose. Provides a simple, containerized solution for centralized log management, analysis, and visualization with minimal configuration required. Ideal for development and small-scale logging infrastructures.
- Host: GitHub
- URL: https://github.com/fesabelilla/elk-vectordb-docker-compose
- Owner: fesabelilla
- Created: 2024-12-16T15:41:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-16T15:54:51.000Z (over 1 year ago)
- Last Synced: 2025-02-14T17:58:23.615Z (over 1 year ago)
- Topics: docker, docker-compose, elasticsearch, kibana, logstash, vector-database
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ELK Stack Docker Compose
## Prerequisites
- Docker
- Docker Compose
## Setup
### 1. Clone Repository
```bash
git clone
cd elk-docker-stack
```
### 2. Prepare System
```bash
# Increase max map count for Elasticsearch
sudo sysctl -w vm.max_map_count=262144
```
### 3. Start ELK Stack
```bash
# Start services
docker-compose up -d
# Check running containers
docker-compose ps
```
## Services
- **Elasticsearch**: `localhost:9200`
- **Kibana**: `localhost:5601`
- **Logstash**: `localhost:5044`, `localhost:5000`
## Useful Commands
```bash
# Stop services
docker-compose down
# View logs
docker-compose logs [service]
```
## Notes
- Requires minimum 4GB RAM
- Security features are disabled
## Troubleshooting
- Check logs: `docker-compose logs`
- Verify network: `docker network ls`