Add glance

This commit is contained in:
2025-07-17 12:43:36 +05:30
parent e1ecdd2915
commit 630e6a00a4
3 changed files with 215 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Glance - A modern dashboard for your self-hosted services
# Documentation: https://glanceapp.io/docs
services:
glance:
# Basic container configuration
container_name: glance
image: glanceapp/glance:v0.8.4 # Official Glance image with version
restart: unless-stopped # Automatically restart unless explicitly stopped
# Environment variables configuration
environment:
- MY_SECRET_TOKEN=${MY_SECRET_TOKEN} # Secret token for API authentication
# Persistent storage configuration
volumes:
- ${APPDATA_PATH}/glance/config:/app/config # Configuration files
- ${APPDATA_PATH}/glance/assets:/app/assets # Static assets and cache
# Network configuration
ports:
- ${PORT}:8080 # Map host port to container port (host:container)