run grafana as user
Some checks failed
Deploy Containers / Prepare (push) Failing after 21s

This commit is contained in:
2025-07-30 00:03:26 -04:00
parent 0a84520e94
commit 2de31aa550
2 changed files with 13 additions and 0 deletions

View File

@@ -1 +1,13 @@
# Homelab IaC
This repository hosts my homelab infrastructure setup, built using Ansible & Gitea Workflows.
## Getting started
You'll need to install Ansible Playbook, either through APT or another avenue.
```
sudo apt install ansible-core
```
Then, configure your vaults using the variable templates provided & update the hosts file to match your hosts. After you've done so, you can simply run `ansible-playbook main.yml` & it will deploy all containers.

View File

@@ -15,6 +15,7 @@
- name: Create Grafana Docker Container
docker_container:
name: grafana
user: "{{ PUID }}"
image: grafana/grafana:latest
restart_policy: unless-stopped
recreate: true