Files
eveAI/docker/grafana/Dockerfile
Josako 4c480c9baa - Corrections for setting up the test environment
- Correction of some bugs discovered
2025-05-08 14:15:06 +02:00

13 lines
402 B
Docker

FROM grafana/grafana:latest
# Copy dashboard and datasource provisioning configurations
COPY provisioning/dashboards /etc/grafana/provisioning/dashboards
COPY provisioning/datasources /etc/grafana/provisioning/datasources
# Set environment variables
ENV GF_SECURITY_ADMIN_USER=admin
ENV GF_SECURITY_ADMIN_PASSWORD=admin
ENV GF_USERS_ALLOW_SIGN_UP=false
# Expose the Grafana web interface
EXPOSE 3000