Restore dockerized grafana setup

It's stil on a separate machine, but in docker to allow more applications to be run easier and tied together.
This commit is contained in:
Jake Howard
2021-02-09 09:16:52 +00:00
parent b940d22373
commit 149d01165f
4 changed files with 55 additions and 75 deletions

View File

@ -0,0 +1,17 @@
- name: Create install directory
file:
path: /opt/grafana
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install compose file
template:
src: files/docker-compose.yml
dest: /opt/grafana/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: docker-compose -f %s config
notify: restart grafana
become: true