grafana / Dockerfile
Subham9126's picture
Create Dockerfile
ac28da5 verified
Raw
History Blame Contribute Delete
255 Bytes
FROM grafana/grafana:latest
# Set admin credentials for testing
ENV GF_SECURITY_ADMIN_USER=admin
ENV GF_SECURITY_ADMIN_PASSWORD=admin
# Change Grafana to run on port 7860 (HF Spaces requirement)
ENV GF_SERVER_HTTP_PORT=7860
EXPOSE 7860
CMD ["/run.sh"]