https://github.com/pgolm/sensu-docker
A sensu docker image, made with love.
https://github.com/pgolm/sensu-docker
docker sensu
Last synced: over 1 year ago
JSON representation
A sensu docker image, made with love.
- Host: GitHub
- URL: https://github.com/pgolm/sensu-docker
- Owner: pgolm
- Created: 2017-05-12T15:29:48.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-13T06:54:59.000Z (almost 9 years ago)
- Last Synced: 2025-01-23T06:32:28.154Z (over 1 year ago)
- Topics: docker, sensu
- Homepage: https://hub.docker.com/r/pgolm/sensu/
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sensu
[](https://travis-ci.org/pgolm/sensu-docker)
[](https://registry.hub.docker.com/u/pgolm/sensu/)
[](https://registry.hub.docker.com/u/pgolm/sensu/)
A [sensu](https://sensuapp.org/) docker image, made with love.
# Add plugins
You could build your own image with plugins included.
```
FROM pgolm/sensu:latest
ARG PLUGINS
ENV SENSU_PLUGINS=${PLUGINS}
RUN \
apt-get update &&\
apt-get install -y libxml2 libxml2-dev libxslt1-dev zlib1g-dev build-essential &&\
sensu-install -P $SENSU_PLUGINS &&\
apt-get remove -y libxml2 libxml2-dev libxslt1-dev zlib1g-dev build-essential
```