Skip to content

Commit

Permalink
all: use "docker compose" not "docker-compose"
Browse files Browse the repository at this point in the history
As part of the Docker binary this will be updated more often and has
better support and newer features than the separate "docker-compose"
binary.
  • Loading branch information
kevinburkesegment committed Jul 11, 2024
1 parent 79edaca commit 4751752
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- run: echo "PATH=$GITHUB_WORKSPACE/bin:$PATH" >> $GITHUB_ENV
- name: Run tests
run: |
docker-compose up -d
docker compose up -d
go vet ./...
go run honnef.co/go/tools/cmd/staticcheck@latest ./...
go test -race -v ./...
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Unit tests expect Consul and a set of NSQ daemons to be running. Start them
using Docker Compose, and then run unit tests.

```shell
docker-compose up -d
docker compose up -d
go test -v -race ./...
docker-compose down
docker compose down
```

0 comments on commit 4751752

Please sign in to comment.