Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
778efcd7ec | |||
9394bbd4cc |
@ -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)
|
||||
|
||||
|
||||
|
@ -65,7 +65,6 @@
|
||||
tags:
|
||||
- configuration
|
||||
|
||||
|
||||
- name: Ensure all requested components are running.
|
||||
community.docker.docker_compose:
|
||||
project_src: "{{ grafana_setup_path | expanduser | realpath }}"
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user