Upload files to "grafana_docker"

This commit is contained in:
philbob 2024-12-23 23:24:22 +00:00
parent 42cd215f0b
commit 3ec8823dee
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
version: "3.8"
services:
grafana:
image: grafana/grafana:latest
container_name: grafana_docker
restart: unless-stopped
# if you are running as root then set it to 0
# else find the right id with the id -u command
user: '0'
ports:
- '3000:3000'
# mounting volume point which we create earlier
volumes:
- '~/grafana-docker/grafana_data:/var/lib/grafana'