Glance

How to Install Glance Dashboard on Ubuntu 24.04

Glance is an open-source dashboard application designed to provide an overview of your systems, services, and metrics in a simple and intuitive interface.
It allows users to quickly monitor resources, visualize data, and customize dashboards according to their needs.

Running Glance locally ensures that your data and configurations remain private and accessible only within your network.
With Docker, deployment is fast, isolated, and easy to maintain.

The steps below walk you through installing Glance Dashboard on Ubuntu 24.04.

 

Install Docker and Dependencies

Glance runs inside a Docker container, so Docker must be installed first.
Update your system and install required dependencies:

 
sudo apt update
sudo apt upgrade -y
sudo apt install -y ca-certificates curl gnupg wget tar docker.io

Enable and start the Docker service:

 
sudo systemctl enable --now docker

At this stage, Docker should be installed and running.

 

Prepare Glance Directories

Create directories for Glance’s base and configuration files:

 
sudo mkdir -p /opt/glance/config sudo chmod 755 /opt/glance /opt/glance/config

Download a sample Glance configuration file:

 
sudo wget https://raw.githubusercontent.com/glanceapp/glance/refs/heads/main/docs/glance.yml -O /opt/glance/config/glance.yml sudo chmod 644 /opt/glance/config/glance.yml

This configuration file can be customized later according to your environment and monitoring needs.

 

Run the Glance Container

Pull and run the Glance Docker image:

 
sudo docker run -d \ --name glance \ -p 8080:8080 \ -v /opt/glance/config:/app/config \ --restart unless-stopped \ glanceapp/glance:latest

Key points:

  • -p 8080:8080 exposes Glance on port 8080.

  • -v /opt/glance/config:/app/config ensures configuration files persist across container updates.

  • --restart unless-stopped makes Glance start automatically on server reboot.

 

Access Glance Dashboard

Open a browser and navigate to:

 
http://<your-server-ip>:8080

You’ll see the Glance interface, where you can explore dashboards, add data sources, and configure visualizations.

 

Conclusion

 

You have successfully installed Glance Dashboard on Ubuntu 24.04 using Docker.
This setup gives you a self-hosted, easy-to-use monitoring dashboard with persistent configuration and simple deployment.
You can now customize dashboards, visualize metrics, and monitor your systems efficiently from a single interface.

  • 0 Utenti hanno trovato utile questa risposta
Hai trovato utile questa risposta?

Articoli Correlati

ERPNext v15

Last Updated: 31 August 2025Applies to: Ubuntu 24.04 LTS (fresh server recommended)Skill Level:...

Open-EMR v7.0.3

Last Updated: 31 August 2025Applies to: Ubuntu 24.04 LTS (fresh server recommended)Skill Level:...

ERPNext v14

Last Updated: 31 August 2025Applies to: Ubuntu 24.04 LTS (fresh server recommended)Skill Level:...

WordPress

1. Overview WordPress is the most popular open-source blogging system and CMS on the Web. It...

Joomla

How to Install Joomla on Ubuntu 24.04   Joomla is a free and open-source content management...