diff --git a/README.md b/README.md index 9be7bd3..9d33a32 100644 --- a/README.md +++ b/README.md @@ -4,15 +4,15 @@ Using docker-compose to run Prometheus & Grafana on a Raspberry Pi ## Install Docker & docker-compose Instructions from [dev.to](https://dev.to/rohansawant/installing-docker-and-docker-compose-on-the-raspberry-pi-in-5-simple-steps-3mgl) +this is now fairly out of date as Compose is now part of the Docker install * Install docker `curl -sSL https://get.docker.com | sh` * Add permissions for user pi to run docker commands `sudo usermod -aG docker pi` -* Install docker-compose `sudo pip3 install docker-compose` ## Run Prometheus & Grafana -* Build and run `docker-compose up --build` -* Or run in the background `docker-compose up -d` +* Build and run `sudo docker compose up --build` +* Or run in the background `sudo docker compose up -d` * Prometheus should now be running at `http://raspberrypi.local:9090` * Grafana should now be running at `http://raspberrypi.local:3000`