Intial repository commit

This commit is contained in:
2025-11-25 14:15:40 -05:00
commit 44c853f580
67 changed files with 34583 additions and 0 deletions

10
glances/.gitignore vendored Normal file
View File

@@ -0,0 +1,10 @@
# Ignore sensitive data
.env # Environment variables file (contains sensitive info)
# Ignore temporary or log files
*.log # Log files
*.bak # Backup files
*.swp # Swap files (e.g., from text editors)
# Ignore any local overrides or extra Docker Compose files
docker-compose.override.yml # Local override for docker-compose (optional)

25
glances/README.md Normal file
View File

@@ -0,0 +1,25 @@
# Glances Info
## Instructions:
- Access WebUI on port 61208
## Contents:
**`glances/`**
├── **`docker-compose.yml`**
├── **`.env`**
├── **`.gitignore`**
└── **`README.md`**
## File Descrptions:
- **`docker-compose.yml`**: Docker compose file
- **`.env`**: Environment Variables
- **`.gitignore`**: Git ignore file
- **`README.md`**: Documentation
## Environmet Variables:
- None
## Ignored Files:
- **`.env`**: Environment Variables

View File

@@ -0,0 +1,21 @@
services:
glances:
image: nicolargo/glances:latest-full
container_name: glances
environment:
- TZ=America/Detroit
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- /run/user/1000/podman/podman.sock:/run/user/1000/podman/podman.sock:ro
pid: host
privileged: true
networks:
- 'homelab'
ports:
- '61208:61208'
restart: unless-stopped
command: -w -B 0.0.0.0 --enable-cors
networks:
homelab:
external: true