Skip to content

Commit 7c36251

Browse files
committed
fix: ci docker-compose -> docker compose
1 parent 3aab12e commit 7c36251

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,15 +152,15 @@ Store the result `TEST_NOTIFICATION_API_URL` in `set-env.sh`.
152152
- With the above setup, you can run tests:
153153

154154
```bash
155-
docker-compose build
156-
source ./set-env.sh && docker-compose run tests
155+
docker compose build
156+
source ./set-env.sh && docker compose run tests
157157
```
158158

159159
- To run tests with local code use:
160160

161161
```bash
162-
docker-compose run tests-local composer install
163-
source ./set-env.sh && docker-compose run tests-local
162+
docker compose run tests-local composer install
163+
source ./set-env.sh && docker compose run tests-local
164164
```
165165

166166
## License

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ stages:
6363
6464
echo "Notification API URL: $NOTIFICATION_API_IP"
6565
66-
docker-compose build --pull
67-
docker-compose run --rm tests
66+
docker compose build --pull
67+
docker compose run --rm tests
6868
displayName: 'Build & Run Tests'
6969
env:
7070
TEST_STORAGE_API_TOKEN: $(TEST_STORAGE_API_TOKEN)

0 commit comments

Comments
 (0)