Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gaui/docker-notifier
Docker Notifier is a .NET Core console application that monitors Docker events and pipes them out to various sinks
https://github.com/gaui/docker-notifier
Last synced: about 1 month ago
JSON representation
Docker Notifier is a .NET Core console application that monitors Docker events and pipes them out to various sinks
- Host: GitHub
- URL: https://github.com/gaui/docker-notifier
- Owner: gaui
- Created: 2017-06-24T19:05:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-20T15:36:22.000Z (over 5 years ago)
- Last Synced: 2024-07-02T09:21:42.598Z (5 months ago)
- Language: C#
- Homepage:
- Size: 11.7 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - docker-notifier - Docker Notifier is a .NET Core console application that monitors Docker events and pipes them out to various sinks (C# #)
README
# Docker Notifier
Docker Notifier is a .NET Core console application that monitors Docker events and pipes them out to various _sinks_. A sink is something that allows some data to _flow through it_.
## Quick start
### Linux
```
docker run -d \
-v /var/run/docker.sock:/var/run/docker.sock \
-e SLACK.WEBHOOK_URL=https://hooks.slack.com/services/YOUR_ID \
gaui/docker-notifier:latest
```### Windows
```
docker run -d \
-e PLATFORM=windows
-e SLACK.WEBHOOK_URL=https://hooks.slack.com/services/YOUR_ID \
gaui/docker-notifier:latest
```## Contributors
- Guðjón Jónsson <>
## TODO
- Add unit tests
- Split sinks into seperate packages
- Add more Docker event types## Changelog
### v0.2.0
- Fixed connection to Docker host for Windows platform
### v0.1.0 initial release