Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fireblinkltd/fbl-docker-image
Docker image with fbl and all official plugins.
https://github.com/fireblinkltd/fbl-docker-image
Last synced: about 1 month ago
JSON representation
Docker image with fbl and all official plugins.
- Host: GitHub
- URL: https://github.com/fireblinkltd/fbl-docker-image
- Owner: FireBlinkLTD
- License: mit
- Created: 2019-08-19T09:04:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-09T21:14:42.000Z (about 1 month ago)
- Last Synced: 2024-11-09T22:23:15.181Z (about 1 month ago)
- Language: Dockerfile
- Size: 72.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fireblink/fbl-plugins Docker Image
[![CircleCI](https://circleci.com/gh/FireBlinkLTD/fbl-docker-image.svg?style=svg)](https://circleci.com/gh/FireBlinkLTD/fbl-docker-image)
[![Known Vulnerabilities](https://snyk.io/test/github/FireBlinkLTD/fbl-docker-image/badge.svg)](https://snyk.io/test/github/FireBlinkLTD/fbl-docker-image)Fat image with FBL and all officially supported plugins.
**Links:**
- [Docker Hub](https://hub.docker.com/r/fireblink/fbl-plugins)
- [Repository](https://github.com/FireBlinkLTD/fbl-docker-image)
- [FBL Documentaion](https://fbl.fireblink.com)
- Plugin documentation are located inside GitHub repository of each individual plugin. You can find repositories inside [FireBlinkLTD](https://github.com/FireBlinkLTD) organization page.Docker image builds are fully automated. Whenever new version of one of the plugins or fbl itself released [package.json](./package.json) is updated automatically and new tag gets created.
Make sure to always use version tag instead of `latest`. That tag is mostly designed for testing purposes and is not suitable for production usage.
You may find what fbl, plugins and what versions are included in the build by looking into [GitHub releases](https://github.com/FireBlinkLTD/fbl-docker-image/releases) with associated tag version.
## Kubernetes Tools
`kubectl` and `helm 3` are included to support `@fbl-plugins/k8s-kubectl` and `@fbl-plugins/k8s-helm` plugins.
## Docker Compose Example
```yaml
version: '3'services:
fbl:
# For demo purposes `latest` tag is used, however it is highly advised to use fixed version
image: fireblink/fbl-plugins:latest
volumes:
- ./path/to/fbl/scripts:/usr/fbl
command: fbl /usr/fbl/flow.yml --verbose
```