Files
freeCodeCamp/guide/english/docker/prometheus/index.md
Sweta Sharma a0fd7e73cd Run Prometheus in Docker (#26699)
* Run Prometheus in Docker

* Update and rename Run Prometheus in Docker to guide/english/docker/prometheus/index.md
2018-11-13 12:41:51 -08:00

483 B

title
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.