diff --git a/guide/english/docker/prometheus/index.md b/guide/english/docker/prometheus/index.md new file mode 100644 index 00000000000..628dffb1eac --- /dev/null +++ b/guide/english/docker/prometheus/index.md @@ -0,0 +1,27 @@ +--- +title: Prometheus +--- + +## Prometheus with Docker + +Prometheus is a time-series database and monitoring solution. + + +### Run Prometheus in Docker + +#### Define a Docker compose +``` +version: "3" +services: + prometheus: + image: quay.io/prometheus/prometheus:latest + ports: + - 9090:9090 +``` + +#### Deploy the stack file: +``` +run docker swarm init +run docker stack deploy monitoring --compose-file=./docker-compose.yml +``` +Nabigate to: http://locahost:9090 to view the UI.