Skip to content

Commit

Permalink
Fix the docker image version in compose deployment (#3006)
Browse files Browse the repository at this point in the history
- grafana v7.3.4
- loki v2.0.0
  • Loading branch information
Hui Kang authored Dec 1, 2020
1 parent 46637db commit aca259f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion production/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Some features of the deployment:
docker-compose -f ./docker-compose-ha-memberlist.yaml up
```

1. When adding data source in the grafana dashboar, using `http://loki-gateway:3100` for the URL field.
1. When adding data source in the grafana dashboard, using `http://loki-gateway:3100` for the URL field.

1. To clean up

Expand Down
8 changes: 4 additions & 4 deletions production/docker/docker-compose-ha-memberlist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ networks:
services:

grafana:
image: grafana/grafana:7.2.0
image: grafana/grafana:7.3.4
ports:
- "3000:3000"
networks:
Expand Down Expand Up @@ -47,7 +47,7 @@ services:
replicas: 2

loki-1:
image: grafana/loki:1.6.1
image: grafana/loki:2.0.0
volumes:
- ./config:/etc/loki/
- ./chunks:/loki/chunks/
Expand All @@ -60,7 +60,7 @@ services:
restart: on-failure

loki-2:
image: grafana/loki:1.6.1
image: grafana/loki:2.0.0
volumes:
- ./config:/etc/loki/
- ./chunks:/loki/chunks/
Expand All @@ -74,7 +74,7 @@ services:
restart: on-failure

loki-3:
image: grafana/loki:1.6.1
image: grafana/loki:2.0.0
volumes:
- ./config:/etc/loki/
- ./chunks:/loki/chunks/
Expand Down

0 comments on commit aca259f

Please sign in to comment.