Skip to content

Commit

Permalink
chore: use docker compose instead of deprecated docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
ludovicm67 committed Jan 2, 2024
1 parent 9b49fc8 commit d7e16c7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs/otel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This Docker image is configured to include the OpenTelemetry Java agent.

We provide a `docker-compose` stack to let you test it.
We provide a Docker Compose stack to let you test it.

## Presentation of the stack

Expand All @@ -24,7 +24,7 @@ The stack includes the following services:
Run the following command:

```sh
docker-compose up
docker compose up
```

## Sample federated query
Expand Down Expand Up @@ -64,5 +64,5 @@ Check the logs [in Grafana](http://localhost:3000):
Run the following command to remvove the stack:

```sh
docker-compose down
docker compose down
```
8 changes: 4 additions & 4 deletions tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

set -eu

docker-compose pull
DOCKER_BUILDKIT=1 docker-compose build
DOCKER_BUILDKIT=1 docker-compose up -d
docker compose pull
DOCKER_BUILDKIT=1 docker compose build
DOCKER_BUILDKIT=1 docker compose up -d
echo "Waiting 20 seconds…"
sleep 20
hurl --test *.hurl
docker-compose down
docker compose down

0 comments on commit d7e16c7

Please sign in to comment.