├── .gitignore ├── Dockerfile ├── LICENSE.txt ├── Makefile ├── README.md ├── main.go └── rootfs └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | rootfs/slack-notify 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/slack-notify/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/slack-notify/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/slack-notify/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/slack-notify/HEAD/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/slack-notify/HEAD/main.go -------------------------------------------------------------------------------- /rootfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/slack-notify/HEAD/rootfs/README.md --------------------------------------------------------------------------------