Unverified Commit f6d6b34e authored by Julien Mancuso's avatar Julien Mancuso Committed by GitHub
Browse files

fix: update docker-compose path in doc (#5821)


Signed-off-by: default avatarJulien Mancuso <jmancuso@nvidia.com>
parent e2982e1f
...@@ -31,7 +31,7 @@ Before running this example, ensure you have the following services running: ...@@ -31,7 +31,7 @@ Before running this example, ensure you have the following services running:
You can start these services using Docker Compose: You can start these services using Docker Compose:
```bash ```bash
docker compose -f deploy/metrics/docker-compose.yml up -d docker compose -f deploy/docker-compose.yml up -d
``` ```
## Components ## Components
...@@ -137,7 +137,7 @@ In each terminal, press `Ctrl+C` to stop: ...@@ -137,7 +137,7 @@ In each terminal, press `Ctrl+C` to stop:
Stop the etcd and NATS services: Stop the etcd and NATS services:
```bash ```bash
docker compose -f deploy/metrics/docker-compose.yml down docker compose -f deploy/docker-compose.yml down
``` ```
## Understand ## Understand
......
...@@ -99,7 +99,7 @@ In each terminal where you started Dynamo components, press `Ctrl+C` to stop the ...@@ -99,7 +99,7 @@ In each terminal where you started Dynamo components, press `Ctrl+C` to stop the
If you don't plan to run any more examples, stop the etcd and NATS services that were started with Docker Compose: If you don't plan to run any more examples, stop the etcd and NATS services that were started with Docker Compose:
```bash ```bash
docker compose -f deploy/metrics/docker-compose.yml down docker compose -f deploy/docker-compose.yml down
``` ```
This will stop and remove the containers for etcd and NATS. This will stop and remove the containers for etcd and NATS.
......
...@@ -22,7 +22,7 @@ cleanup() { ...@@ -22,7 +22,7 @@ cleanup() {
pkill -f "components/main.py" || true pkill -f "components/main.py" || true
# Stop docker services # Stop docker services
docker compose -f ../../deploy/metrics/docker-compose.yml down 2>/dev/null || true docker compose -f ../../deploy/docker-compose.yml down 2>/dev/null || true
# Wait a moment for cleanup # Wait a moment for cleanup
sleep 2 sleep 2
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment