Skip to content

Commit bcdc071

Browse files
committed
Fix docker compose command in CI, use grafana oss 11 version in docker
1 parent 2263172 commit bcdc071

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.config/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG grafana_version=latest
2-
ARG grafana_image=grafana-enterprise
2+
ARG grafana_image=grafana-oss
33

44
FROM grafana/${grafana_image}:${grafana_version}
55

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
run: npm run build
3636

3737
- name: Start grafana docker
38-
run: docker-compose up -d
38+
run: docker compose up -d
3939

4040
- name: Run e2e tests
4141
run: npm run e2e
4242

4343
- name: Stop grafana docker
44-
run: docker-compose down
44+
run: docker compose down
4545

4646
- name: Check for backend
4747
id: check-for-backend

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
build:
1717
context: ./.config
1818
args:
19-
grafana_version: 10.4.0
19+
grafana_version: 11.6.3
2020
ports:
2121
- 3000:3000/tcp
2222
volumes:

0 commit comments

Comments
 (0)