fix: Restart always

Restart always grafana and influxdb.
This commit is contained in:
Laur Ivan 2023-04-03 16:14:11 +02:00
parent d7917423a3
commit 9394bbd4cc
2 changed files with 2 additions and 1 deletions

View File

@ -65,7 +65,6 @@
tags:
- configuration
- name: Ensure all requested components are running.
community.docker.docker_compose:
project_src: "{{ grafana_setup_path | expanduser | realpath }}"

View File

@ -2,6 +2,7 @@ version: '3.9'
services:
influxdb:
image: influxdb:latest
restart: always
ports:
- '{{ influxdb.port }}:8086'
volumes:
@ -13,6 +14,7 @@ services:
grafana:
image: grafana/grafana-oss:latest
restart: always
ports:
- '{{ grafana.port }}:3000'
volumes: