Grafana
Complete docker-compose.yaml
services:
umh:
# TODO: set your desired container version here
# e.g. `umh-core:v0.44.31`
image: management.umh.app/oci/united-manufacturing-hub/umh-core:ENTER_VERSION_HERE
restart: unless-stopped
volumes:
- umh-data:/data
environment:
# TODO: Enter your instance's Auth Token.
# You'll find it in your instance's configuration
# file on management.umh.app.
- AUTH_TOKEN=your_auth_token
# TODO: Change the LOCATION_0 parameter
# to your desired Level 0 Location name
- LOCATION_0=your_level_0_location
# Optional: Define more levels
# - LOCATION_1=your_level_1
# - LOCATION_2=your_level_2
# - LOCATION_3=your_level_3
# - LOCATION_4=your_level_4
- RELEASE_CHANNEL=stable
- API_URL=https://management.umh.app/api
grafana:
image: management.umh.app/oci/grafana/grafana:12.3.0
restart: unless-stopped
ports:
- 3000:3000
environment:
# TODO: Set your desired username and password here
# You'll need these credentials to
# access your local Grafana instance
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=admin
volumes:
- grafana-data:/var/lib/grafana
healthcheck:
test: ["CMD-SHELL", "curl --fail http://grafana:3000/api/health"]
interval: 10s
timeout: 5s
retries: 3
volumes:
umh-data: {}
grafana-data: {}Already running umh-core?
Connecting to Grafana
Last updated

