Compare commits

...

2 Commits

Author SHA1 Message Date
778efcd7ec chore(release): 1.1.1 2023-04-03 16:15:28 +02:00
9394bbd4cc fix: Restart always
Restart always grafana and influxdb.
2023-04-03 16:14:11 +02:00
3 changed files with 9 additions and 1 deletions

View File

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [1.1.1](https://git.laurivan.com/Dev/ansible-role-grafana/compare/v1.1.0...v1.1.1) (2023-04-03)
### Bug Fixes
* Restart always ([9394bbd](https://git.laurivan.com/Dev/ansible-role-grafana/commit/9394bbd4cc7603392433eea9e9d6a5f38ad27120))
## [1.1.0](https://git.laurivan.com/Dev/ansible-role-grafana/compare/v1.0.1...v1.1.0) (2022-12-19)

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: