Skip to content

Commit

Permalink
migrate docker-compose to docker compose (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
MGJamJam authored Sep 4, 2024
1 parent 642d140 commit a4200c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ jobs:

- name: Start Grafana
run: |
docker-compose pull
DEVELOPMENT=false GRAFANA_VERSION=${{ matrix.GRAFANA_IMAGE.VERSION }} GRAFANA_IMAGE=${{ matrix.GRAFANA_IMAGE.NAME }} docker-compose up -d
docker compose pull
DEVELOPMENT=false GRAFANA_VERSION=${{ matrix.GRAFANA_IMAGE.VERSION }} GRAFANA_IMAGE=${{ matrix.GRAFANA_IMAGE.NAME }} docker compose up -d
- name: Wait for Grafana to start
uses: nev7n/wait_for_response@v1
Expand All @@ -176,7 +176,7 @@ jobs:
docker logs test-test-datasource >& grafana-server.log
- name: Stop grafana docker
run: docker-compose down
run: docker compose down

- name: Upload server log
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"format": "yarn prettier . --write",
"format:check": "yarn prettier --check .",
"e2e": "yarn playwright test",
"server": "docker-compose up --build",
"server": "docker compose up --build",
"sign": "npx --yes @grafana/sign-plugin@latest"
},
"author": "Bitmovin",
Expand Down

0 comments on commit a4200c8

Please sign in to comment.