Tiny Streamlit app in Docker. First step is a simple "Hello, Streamlit" page.
A future step will connect to Grafana's API using GRAFANA_URL and GRAFANA_API_TOKEN.
# Build
docker compose up --build -d
# Docker Compose
services:
app:
build: .
image: grafana-global-updates:dev
container_name: grafana-global-updates
ports:
- "8502:8502"
env_file:
- .env
restart: unless-stopped
# Open http://localhost:8502 (or the host's IP/port if remote)