From 778bc4fc24d5bf6f790fb5716e4cce18a697510a Mon Sep 17 00:00:00 2001 From: Steve Durrheimer Date: Sun, 7 Jun 2015 16:47:20 +0200 Subject: [PATCH] Add Docker instructions to the README --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 8e946b8f..6aa2e722 100644 --- a/README.md +++ b/README.md @@ -75,3 +75,16 @@ are going to be addressed in the future: configurable amount of time for A to start firing as well before sending notifications for B. This is not yet supported. * Alertmanager has not been tested or optimized for high alert loads yet. + +## Using Docker + +You can deploy the Alertmanager using the [prom/alertmanager](https://registry.hub.docker.com/u/prom/alertmanager/) Docker image. + +For example: + +```bash +docker pull prom/alertmanager + +docker run -d -p 9093:9093 -v $PWD/alertmanager.conf:/alertmanager.conf \ + prom/alertmanager -config.file=/alertmanager.conf +```