Skip to content

Commit

Permalink
Merge pull request #23 from Fine0830/test/update
Browse files Browse the repository at this point in the history
change syntax
  • Loading branch information
Fine0830 authored Sep 27, 2024
2 parents 1ada6d0 + d144d77 commit c441835
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
CI: true
- name: Create service with docker compose
run: |
docker-compose -f test/all-in-one.yaml up -d
docker compose -f test/all-in-one.yaml up -d
docker ps
sleep 60
docker-compose -f test/all-in-one.yaml logs test-ui
docker compose -f test/all-in-one.yaml logs test-ui
- name: Clean Up
if: ${{ always() }}
run: docker-compose -f test/all-in-one.yaml down
run: docker compose -f test/all-in-one.yaml down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ This project provides test [skywalking-client-js](https://github.com/apache/skyw

The test project generates traffic automatically through `selenium`.

**Requests: [docker](https://docs.docker.com/install/), [docker-compose](https://docs.docker.com/compose/install/).**
**Requests: [docker](https://docs.docker.com/install/), [docker compose](https://docs.docker.com/compose/install/).**

1. Run the SkyWalking and test project

```shell script
npm run rebuild

docker-compose -f test/all-in-one.yaml up -d
docker compose -f test/all-in-one.yaml up -d
```

2. Visit SkyWalking UI
Expand All @@ -25,5 +25,5 @@ docker-compose -f test/all-in-one.yaml up -d
3. Remove container

```shell script
docker-compose -f test/all-in-one.yaml down
docker compose -f test/all-in-one.yaml down
```

0 comments on commit c441835

Please sign in to comment.