Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ioannad/docker-openwrt-fluentbit
Fluentbit docker image on top of mcreations/openwrt-x64
https://github.com/ioannad/docker-openwrt-fluentbit
docker-image docker-openwrt-fluentbit fluent-bit fluentbit mcreations openwrt
Last synced: 3 days ago
JSON representation
Fluentbit docker image on top of mcreations/openwrt-x64
- Host: GitHub
- URL: https://github.com/ioannad/docker-openwrt-fluentbit
- Owner: ioannad
- Created: 2018-01-23T10:11:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-07T14:50:32.000Z (almost 7 years ago)
- Last Synced: 2023-07-28T11:28:44.927Z (over 1 year ago)
- Topics: docker-image, docker-openwrt-fluentbit, fluent-bit, fluentbit, mcreations, openwrt
- Language: Shell
- Size: 6.56 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fluent-bit docker image over OpenWRT
This docker image is based on mcreations/openwrt-x64:latest.
## Installation
To install, `make` and optionally `make clean`.
## Usage
### Built-in config files
You may start Fluent-bit with one of the built-in configs, found in `src/fluent-bit/conf/`, or make your own config file, say `FOO.conf`. This can also be a combination of built-in configs, with or without own extra rules, as specified [here](http://fluentbit.io/documentation/0.12/configuration/file.html#config_include_file).
```
docker run -v /full/path/to/your/file/FOO.conf:/opt/fluent-bit/FOO.conf -e FLUENTBIT_CONFIG_FILE=/opt(fluent-bit/FOO.conf docker-openwrt-fluentbit
```## Updating
To update to a version with tag `$TAG`, do:
```
git subtree pull -P src/fluent-bit --squash https://github.com/fluent/fluent-bit.git $TAG
make && make clean
```