├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md └── start-elastalert.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | 2 | .idea/ 3 | *.iml 4 | out 5 | gen 6 | .DS_Store 7 | README.md 8 | .gitignore 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | .idea/ 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krizsan/elastalert-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krizsan/elastalert-docker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krizsan/elastalert-docker/HEAD/README.md -------------------------------------------------------------------------------- /start-elastalert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krizsan/elastalert-docker/HEAD/start-elastalert.sh --------------------------------------------------------------------------------