Skip to content

Commit

Permalink
fix(docker-compose): image tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamad-liyaghi committed Aug 14, 2024
1 parent 0ec0cad commit 6ad5f43
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions docker-compose.base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ services:
networks:
- main
promtail:
image: grafana/promtail
image: grafana/promtail:2.5.0
container_name: food-anywhere-promtail
volumes:
- ./promtail/config.yaml:/etc/promtail/promtail.yaml
Expand All @@ -89,7 +89,7 @@ services:
networks:
- main
loki:
image: grafana/loki
image: grafana/loki:2.5.0
container_name: food-anywhere-loki
ports:
- "3100:3100"
Expand All @@ -98,7 +98,7 @@ services:
networks:
- main
node_exporter:
image: quay.io/prometheus/node-exporter:latest
image: quay.io/prometheus/node-exporter:v1.2.2
container_name: food-anywhere-node-exporter
restart: unless-stopped
volumes:
Expand All @@ -116,7 +116,7 @@ services:
networks:
- main
prometheus:
image: prom/prometheus
image: prom/prometheus:v2.35.0
container_name: food-anywhere-prometheus
volumes:
- ./prometheus/config.yaml:/etc/prometheus/prometheus.yml
Expand All @@ -134,7 +134,7 @@ services:
networks:
- main
grafana:
image: grafana/grafana
image: grafana/grafana:8.2.3
container_name: food-anywhere-grafana
ports:
- 3000:3000
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/grafana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: grafana
image: grafana/grafana
image: grafana/grafana:8.2.3
ports:
- containerPort: 3000
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/loki.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: loki
image: grafana/loki
image: grafana/loki:2.5.0
ports:
- containerPort: 3100
---
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/node_exporter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: node-exporter
image: quay.io/prometheus/node-exporter:latest
image: quay.io/prometheus/node-exporter:v1.2.2
ports:
- containerPort: 9100

Expand Down
2 changes: 1 addition & 1 deletion kubernetes/prometheus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: prometheus
image: prom/prometheus
image: prom/prometheus:v2.35.0
ports:
- containerPort: 9090
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/promtail.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: promtail
image: grafana/promtail
image: grafana/promtail:2.5.0
args:
- --config.file=/etc/promtail/promtail.yaml
volumeMounts:
Expand Down

0 comments on commit 6ad5f43

Please sign in to comment.