https://github.com/alonsodomin/docker-flume
A Docker image for Apache Flume
https://github.com/alonsodomin/docker-flume
Last synced: 2 months ago
JSON representation
A Docker image for Apache Flume
- Host: GitHub
- URL: https://github.com/alonsodomin/docker-flume
- Owner: alonsodomin
- Created: 2016-01-21T14:05:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-29T20:40:35.000Z (over 9 years ago)
- Last Synced: 2025-01-04T21:45:27.832Z (4 months ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Apache Flume
Docker image for the deployment of an [Apache Flume](https://flume.apache.org) server.
## Starting the container
To start the container use following command:
```
docker run --name some_flume -e FLUME_AGENT_NAME=myagent -d alonsodomin/flume
```## Configuring Flume
The container comes with the bare minimum needed to start flume and use the
example configuration that comes with the standard Apache Flume distribution.To include your own configuration you can mount it inside the container in
the ```/opt/lib/flume/conf``` folder.```
docker run --name some_flume -e FLUME_AGENT_NAME=myagent -v /path/to/conf:/opt/lib/flume/conf -d alonsodomin/flume
```If you want more advance configuration (setting up sources listening on specific
ports) then the recommended approach is to extend this image and expose the
ports that you might be interested in.