diff --git a/Dummy Sites/.dockerignore b/Dummy Sites/.dockerignore new file mode 100644 index 0000000..0b2edf4 --- /dev/null +++ b/Dummy Sites/.dockerignore @@ -0,0 +1,18 @@ +# Git +.git +.gitignore + +# Documentation +README.md +*.md + +# IDE +.vscode +.idea + +# OS files +.DS_Store +Thumbs.db + +# Other +*.log diff --git a/Dummy Sites/Dockerfile b/Dummy Sites/Dockerfile new file mode 100644 index 0000000..b9fa0fb --- /dev/null +++ b/Dummy Sites/Dockerfile @@ -0,0 +1,35 @@ +# Use nginx alpine as base image for a lightweight container +FROM nginx:alpine + +# Remove default nginx website +RUN rm -rf /usr/share/nginx/html/* + +# Copy main dashboard +COPY index.html /usr/share/nginx/html/ + +# Copy all service pages +COPY services/ /usr/share/nginx/html/services/ + +# Create a custom nginx config +RUN echo 'server { \ + listen 80; \ + server_name localhost; \ + root /usr/share/nginx/html; \ + index index.html; \ + \ + location / { \ + try_files $uri $uri/ =404; \ + } \ + \ + # Enable gzip compression \ + gzip on; \ + gzip_vary on; \ + gzip_min_length 1024; \ + gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; \ +}' > /etc/nginx/conf.d/default.conf + +# Expose port 80 +EXPOSE 80 + +# Start nginx +CMD ["nginx", "-g", "daemon off;"] diff --git a/Dummy Sites/README.md b/Dummy Sites/README.md new file mode 100644 index 0000000..98ce3f6 --- /dev/null +++ b/Dummy Sites/README.md @@ -0,0 +1,181 @@ +# ๐Ÿ  Homelab Showcase Dashboard + +A beautiful, realistic dashboard for showcasing your internal homelab services with **dummy login pages** that mimic the real interfaces. Perfect for demonstrations without exposing actual services. + +> **Note:** This is a showcase/demo site. All login forms are non-functional and display a "demo page" message when submitted. + +## โœจ Features + +- ๐ŸŽจ **Realistic Service Interfaces** - Each service has its own authentic-looking dummy page +- ๐Ÿ  **Main Dashboard** - Beautiful dark-themed landing page with all services +- ๐Ÿ”’ **Safe & Secure** - No real authentication, just visual demonstrations +- ๐Ÿ“ฑ **Responsive Design** - Works on desktop, tablet, and mobile +- ๐Ÿณ **Docker Ready** - Easy deployment via Docker Compose on Portainer + +## ๐Ÿ“ฆ Included Services + +### Storage & Cloud +| Service | Description | Dummy Page | +|---------|-------------|------------| +| **Nextcloud** | Self-hosted cloud storage | `services/nextcloud.html` | + +### Media & Entertainment +| Service | Description | Dummy Page | +|---------|-------------|------------| +| **Plex** | Media streaming server | `services/plex.html` | +| **Jellyfin** | Open source media server | `services/jellyfin.html` | + +### Infrastructure & Management +| Service | Description | Dummy Page | +|---------|-------------|------------| +| **Portainer** | Docker container management | `services/portainer.html` | +| **Proxmox** | Virtualization platform | `services/proxmox.html` | +| **Pi-hole** | Network ad blocker dashboard | `services/pihole.html` | + +### Monitoring +| Service | Description | Dummy Page | +|---------|-------------|------------| +| **Netdata** | Real-time system monitoring | `services/netdata.html` | + +## ๐Ÿš€ Deployment + +### Option 1: Portainer (Recommended) + +1. **Upload files** to your Portainer VM: + ```bash + scp -r * user@your-vm:/path/to/homelab-showcase/ + ``` + +2. **In Portainer:** + - Go to **Stacks** โ†’ **Add Stack** + - Name: `homelab-showcase` + - Copy contents of `docker-compose.yml` + - Deploy + +3. **Access:** + - Dashboard: `http://your-vm-ip:8080` + - Or configure Traefik for `showcase.lemonlink.eu` + +### Option 2: Docker Compose + +```bash +docker-compose up -d +``` + +### Option 3: Manual Docker + +```bash +docker build -t homelab-showcase . +docker run -d -p 8080:80 --name homelab-showcase --restart unless-stopped homelab-showcase +``` + +## ๐Ÿ—‚๏ธ File Structure + +``` +. +โ”œโ”€โ”€ index.html # Main dashboard +โ”œโ”€โ”€ Dockerfile # Container definition +โ”œโ”€โ”€ docker-compose.yml # Compose configuration +โ”œโ”€โ”€ README.md # This file +โ””โ”€โ”€ services/ # Dummy service pages + โ”œโ”€โ”€ nextcloud.html # Nextcloud login page + โ”œโ”€โ”€ portainer.html # Portainer login page + โ”œโ”€โ”€ netdata.html # Netdata dashboard + โ”œโ”€โ”€ plex.html # Plex media interface + โ”œโ”€โ”€ jellyfin.html # Jellyfin login page + โ”œโ”€โ”€ proxmox.html # Proxmox login page + โ””โ”€โ”€ pihole.html # Pi-hole dashboard +``` + +## ๐ŸŽจ Service Pages Preview + +### Nextcloud Login +- Authentic blue gradient background +- Official Nextcloud logo +- Username/password form +- "Stay logged in" checkbox + +### Portainer Login +- Docker-themed dark interface +- OAuth option button +- Version info display + +### Netdata Dashboard +- Real-time-looking charts (static) +- CPU, RAM, Disk, Network metrics +- Time range selector +- Node overview panel + +### Plex Interface +- Dark media server theme +- Movie/TV show grid +- "Continue Watching" section +- Sidebar navigation + +### Jellyfin Login +- Jellyfin blue theme +- Server name display +- Clean centered login box + +### Proxmox Login +- Split-screen design +- Feature highlights +- Realm selection + +### Pi-hole Dashboard +- Red-themed statistics +- Query graphs +- Top blocked domains list +- Client activity panel + +## ๐Ÿ”ง Customization + +### Adding More Services + +1. Create a new HTML file in `services/` folder +2. Copy the demo banner from existing files: + ```html +
+ ๐Ÿ”’ This is a dummy page for showcase purposes only. + โ† Back to Dashboard +
+ ``` +3. Design the login/interface to match the real service +4. Add the service card to `index.html` + +### Changing Domain Names + +Edit the URLs in `index.html` service cards to match your actual domains: + +```html +your-domain.com +``` + +### Styling + +Each service page is self-contained with inline CSS. Edit the ` + + +
+
+

๐Ÿ  My Homelab

+

Central dashboard for all internal services

+
+
+ + All Systems Operational +
+
+ ๐Ÿ–ฅ๏ธ 12 Services +
+
+ โฑ๏ธ Uptime: 45 days +
+
+
+
+ +
+ +
+

+ + + + + + + Dashboards & Monitoring +

+ +
+ + +
+

+ + + + Storage & Cloud +

+ +
+ + +
+

+ + + + Media & Entertainment +

+ +
+ + +
+

+ + + + Infrastructure & Management +

+ +
+
+ + + + diff --git a/Dummy Sites/services/jellyfin.html b/Dummy Sites/services/jellyfin.html new file mode 100644 index 0000000..ebcfb0d --- /dev/null +++ b/Dummy Sites/services/jellyfin.html @@ -0,0 +1,202 @@ + + + + + + Jellyfin + + + +
+ ๐Ÿ”’ This is a dummy login page for showcase purposes only. โ† Back to Dashboard +
+ +
+
+ +

media.lemonlink.eu

+ +
+
+ + +
+ +
+ + +
+ +
+ +
+ + +
+ + + +

Jellyfin Server 10.8.13

+
+
+ + diff --git a/Dummy Sites/services/netdata.html b/Dummy Sites/services/netdata.html new file mode 100644 index 0000000..22cf721 --- /dev/null +++ b/Dummy Sites/services/netdata.html @@ -0,0 +1,1062 @@ + + + + + + Netdata | Live Monitoring + + + +
+ ๐Ÿ”’ This is a dummy dashboard for showcase purposes only. โ† Back to Dashboard +
+ + + + +
+ + + + +
+ +
+
+
Total Disk Reads
+
+ + + + +
+ 0.7439 + MiB/s +
+
+
+ +
+
Total Disk Writes
+
+ + + + +
+ 0.0039 + MiB/s +
+
+
+ +
+
Avg CPU per Node
+
+ + + + +
+ 7.329 + % +
+
+
+ 0 + 100 +
+
+ +
+
Avg Used RAM per Node
+
+ + + + +
+ 59 + % +
+
+
+ 0 + 100 +
+
+ +
+
Total Network Inbound
+
+ + + + +
+ 0.189 + Mbit/s +
+
+
+ +
+
Total Network Outbound
+
+ + + + +
+ 0.3203 + Mbit/s +
+
+
+
+ + +
+
+
Top Nodes by CPU
+
+
+ RPI5-Server-01 +
+
+
+ 7.329% +
+
+
+ +
+
Top Nodes by Used RAM
+
+
+ RPI5-Server-01 +
+
+
+ 58.707% +
+
+
+ +
+
Avg System Load (1 min)
+
+ + + + + + + + + + +
+
0.1834
+
threads
+
+
+ + +
+
+
+
- Compute
+
-- CPU
+
+
+ + + + + +
+
+ +
+ Total CPU utilization โ€ข system.cpu โ€ข [percent] +
+ +
+
+
+
+
+
+
+
+
+
+
+ 100 + 80 + 60 + 40 + 20 + 0 +
+
+ + + +
+
+ 12:07:00 + 12:08:00 + 12:09:00 + 12:10:00 + 12:11:00 + 12:12:00 + 12:13:00 + 12:14:00 + 12:15:00 + 12:16:00 + 12:17:00 + 12:18:00 + 12:19:00 + 12:20:00 + 12:21:00 +
+
+ +
+
+
+ softirq + 0.2502 % +
+
+
+ user + 4.0832 % +
+
+
+ system + 2.3289 % +
+
+
+ iowait + 0.6667 % +
+
+
+
+ + + +
+ + + + + + diff --git a/Dummy Sites/services/nextcloud.html b/Dummy Sites/services/nextcloud.html new file mode 100644 index 0000000..080d026 --- /dev/null +++ b/Dummy Sites/services/nextcloud.html @@ -0,0 +1,440 @@ + + + + + + Log in โ€“ Nextcloud + + + +
+ ๐Ÿ”’ This is a dummy login page for showcase purposes only. โ† Back to Dashboard +
+ +
+
+
+
+
+
+ +
+ + +
+

Log in to Nextcloud

+ +
+
+ + +
+ +
+ + + + + + + + +
+ +
+ +
+ + +
+ + + + +
+
+ + + + + + diff --git a/Dummy Sites/services/pihole.html b/Dummy Sites/services/pihole.html new file mode 100644 index 0000000..54b8ae7 --- /dev/null +++ b/Dummy Sites/services/pihole.html @@ -0,0 +1,698 @@ + + + + + + Pi-hole Dashboard + + + +
+ ๐Ÿ”’ This is a dummy dashboard for showcase purposes only. โ† Back to Dashboard +
+ +
+ + + + +
+
+ + hostname: pihole + +
+ + +
+
+
๐ŸŒ
+
Total queries
+
73,770
+ +
+ +
+
๐Ÿ›ก๏ธ
+
Queries Blocked
+
17,304
+ +
+ +
+
๐Ÿ“Š
+
Percentage Blocked
+
23.5%
+ +
+ +
+
๐Ÿ“‹
+
Domains on Adlists
+
254,501
+ +
+
+ + +
+
Total queries over last 24 hours
+
+
+ 1,200 + 1,000 + 800 + 600 + 400 + 200 + 0 +
+
+ +
+
+
+ +
+
+ + +
+
Client activity over last 24 hours
+
+
+ 1,200 + 1,000 + 800 + 600 + 400 + 200 + 0 +
+
+ +
+
+
+ +
+
+ + +
+
+
Query Types
+
+
+ + + + + + + +
+
+ + + + + +
+
+
+ +
+
Upstream servers
+
+
+ + + + + +
+
+ + + +
+
+
+
+
+
+ + diff --git a/Dummy Sites/services/plex.html b/Dummy Sites/services/plex.html new file mode 100644 index 0000000..8f4f15e --- /dev/null +++ b/Dummy Sites/services/plex.html @@ -0,0 +1,431 @@ + + + + + + Plex + + + +
+ ๐Ÿ”’ This is a dummy media server for showcase purposes only. โ† Back to Dashboard +
+ + + +
+
+ +
+ ๐Ÿ”” + โš™๏ธ +
A
+
+
+ +
+
๐ŸŽญ
+
+

Continue Watching

+
2023 โ€ข 2h 15m โ€ข Action, Sci-Fi
+

+ Pick up where you left off. Your personal media server is ready with all your favorite movies and TV shows. +

+
+ + +
+
+
+ +
+
+

Recently Added Movies

+ See all โ†’ +
+
+
+
๐ŸŽฌ
+
The Matrix Resurrections
+
2021 โ€ข 148 min
+
+
+
๐Ÿš€
+
Interstellar
+
2014 โ€ข 169 min
+
+
+
๐Ÿฆธ
+
The Dark Knight
+
2008 โ€ข 152 min
+
+
+
๐Ÿค–
+
Blade Runner 2049
+
2017 โ€ข 164 min
+
+
+
๐ŸŒŒ
+
Dune
+
2021 โ€ข 155 min
+
+
+
โš”๏ธ
+
Inception
+
2010 โ€ข 148 min
+
+
+
+ +
+
+

Continue Watching

+ See all โ†’ +
+
+
+
๐Ÿ“บ
+
Breaking Bad S05E08
+
45 min remaining
+
+
+
๐Ÿ‰
+
House of Dragon S01E03
+
32 min remaining
+
+
+
โš”๏ธ
+
The Witcher S02E05
+
28 min remaining
+
+
+
๐Ÿ•ต๏ธ
+
Sherlock S04E01
+
52 min remaining
+
+
+
+
+ + diff --git a/Dummy Sites/services/portainer.html b/Dummy Sites/services/portainer.html new file mode 100644 index 0000000..ebf5261 --- /dev/null +++ b/Dummy Sites/services/portainer.html @@ -0,0 +1,796 @@ + + + + + + Home - Portainer + + + +
+ ๐Ÿ”’ This is a dummy dashboard for showcase purposes only. โ† Back to Dashboard +
+ +
+ + + + +
+ + + +
+
+
+ ๐Ÿ–ฅ๏ธ + Environments +
+
+ + +
+
+ +
+ Click on an environment to manage +
+ + +
+ + + + + + + +
+ + +
+
+ + +
+
+
+
๐Ÿณ
+
+
+ local + Up + โ†ป 2026-02-02 12:42:53 + Standalone 2.21.3 + /var/run/docker.sock +
+
+ Group: Unassigned + ๐Ÿท๏ธ No tags + โšก Local +
+
+
+
+ + +
+
Disconnected
+ +
+
+
+ +
+
+ ๐Ÿ“š + 12 + stacks +
+
+ ๐Ÿ“ฆ + 24 + containers +
+
+ + 18 + + 2 + + 0 + + 0 +
+
+ ๐Ÿ’พ + 32 + volumes +
+
+ ๐Ÿ–ผ๏ธ + 87 + images +
+
+ ๐Ÿ–ฅ๏ธ + 4 + CPU +
+
+ ๐Ÿ’ฝ + 7.8 + GB RAM +
+
+
+ + +
+
+
+
๐Ÿณ
+
+
+ Compute-01 + Up + โ†ป 2026-02-02 12:42:53 + Standalone 2.21.3 + agent.local:9001 +
+
+ Group: Unassigned + ๐Ÿท๏ธ No tags + โšก Agent 2.21.3 +
+
+
+
+ + +
+
Disconnected
+ +
+
+
+ +
+
+ ๐Ÿ“š + 5 + stacks +
+
+ ๐Ÿ“ฆ + 16 + containers +
+
+ + 14 + + 1 + + 0 + + 0 +
+
+ ๐Ÿ’พ + 10 + volumes +
+
+ ๐Ÿ–ผ๏ธ + 24 + images +
+
+ ๐Ÿ–ฅ๏ธ + 6 + CPU +
+
+ ๐Ÿ’ฝ + 8.2 + GB RAM +
+
+
+
+
+
+ + diff --git a/Dummy Sites/services/proxmox.html b/Dummy Sites/services/proxmox.html new file mode 100644 index 0000000..2c45e8e --- /dev/null +++ b/Dummy Sites/services/proxmox.html @@ -0,0 +1,624 @@ + + + + + + Proxmox Virtual Environment + + + +
+ ๐Ÿ”’ This is a dummy login page for showcase purposes only. โ† Back to Dashboard +
+ + +
+
+ +
Virtual Environment
+
+ + + +
+ + + +
+ +
+ +
+
+ + +
+ + + + +
+ + +
+
+ + +
+
+
Tasks
+
Cluster log
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Start TimeEnd TimeNodeUser nameDescriptionStatus
02/02/2026 12:21:42-pveroot@pamLoginโœ“ OK
02/02/2026 12:20:1502/02/2026 12:20:16pveroot@pamVM 100 - Startโœ“ OK
02/02/2026 12:18:3302/02/2026 12:18:34pveroot@pamVM 101 - Stopโœ“ OK
+
+
+ + + + diff --git a/index.html b/index.html index aff6213..e40d038 100644 --- a/index.html +++ b/index.html @@ -322,46 +322,46 @@ Private Services
-
+
โ˜๏ธ

Nextcloud

Private cloud storage, files, and collaboration

-
+
- Checking... + Restricted
- +
-
+
- - - - - - - - - - - - diff --git a/services/jellyfin.html b/services/jellyfin.html new file mode 100644 index 0000000..ebcfb0d --- /dev/null +++ b/services/jellyfin.html @@ -0,0 +1,202 @@ + + + + + + Jellyfin + + + +
+ ๐Ÿ”’ This is a dummy login page for showcase purposes only. โ† Back to Dashboard +
+ + + + diff --git a/services/netdata.html b/services/netdata.html new file mode 100644 index 0000000..22cf721 --- /dev/null +++ b/services/netdata.html @@ -0,0 +1,1062 @@ + + + + + + Netdata | Live Monitoring + + + +
+ ๐Ÿ”’ This is a dummy dashboard for showcase purposes only. โ† Back to Dashboard +
+ + + + +
+ + + + +
+ +
+
+
Total Disk Reads
+
+ + + + +
+ 0.7439 + MiB/s +
+
+
+ +
+
Total Disk Writes
+
+ + + + +
+ 0.0039 + MiB/s +
+
+
+ +
+
Avg CPU per Node
+
+ + + + +
+ 7.329 + % +
+
+
+ 0 + 100 +
+
+ +
+
Avg Used RAM per Node
+
+ + + + +
+ 59 + % +
+
+
+ 0 + 100 +
+
+ +
+
Total Network Inbound
+
+ + + + +
+ 0.189 + Mbit/s +
+
+
+ +
+
Total Network Outbound
+
+ + + + +
+ 0.3203 + Mbit/s +
+
+
+
+ + +
+
+
Top Nodes by CPU
+
+
+ RPI5-Server-01 +
+
+
+ 7.329% +
+
+
+ +
+
Top Nodes by Used RAM
+
+
+ RPI5-Server-01 +
+
+
+ 58.707% +
+
+
+ +
+
Avg System Load (1 min)
+
+ + + + + + + + + + +
+
0.1834
+
threads
+
+
+ + +
+
+
+
- Compute
+
-- CPU
+
+
+ + + + + +
+
+ +
+ Total CPU utilization โ€ข system.cpu โ€ข [percent] +
+ +
+
+
+
+
+
+
+
+
+
+
+ 100 + 80 + 60 + 40 + 20 + 0 +
+
+ + + +
+
+ 12:07:00 + 12:08:00 + 12:09:00 + 12:10:00 + 12:11:00 + 12:12:00 + 12:13:00 + 12:14:00 + 12:15:00 + 12:16:00 + 12:17:00 + 12:18:00 + 12:19:00 + 12:20:00 + 12:21:00 +
+
+ +
+
+
+ softirq + 0.2502 % +
+
+
+ user + 4.0832 % +
+
+
+ system + 2.3289 % +
+
+
+ iowait + 0.6667 % +
+
+
+
+ + + +
+ + + + + + diff --git a/services/nextcloud.html b/services/nextcloud.html new file mode 100644 index 0000000..10bdaf3 --- /dev/null +++ b/services/nextcloud.html @@ -0,0 +1,440 @@ + + + + + + Log in โ€“ Nextcloud + + + +
+ ๐Ÿ”’ This is a demo login page. The real service is private. โ† Back to LemonLink +
+ +
+
+
+
+
+
+ +
+ + + +
+ +
+ Nextcloud โ€“ a safe home for all your data +
+ + + + diff --git a/services/pihole.html b/services/pihole.html new file mode 100644 index 0000000..54b8ae7 --- /dev/null +++ b/services/pihole.html @@ -0,0 +1,698 @@ + + + + + + Pi-hole Dashboard + + + +
+ ๐Ÿ”’ This is a dummy dashboard for showcase purposes only. โ† Back to Dashboard +
+ +
+ + + + +
+
+ + hostname: pihole + +
+ + +
+
+
๐ŸŒ
+
Total queries
+
73,770
+ +
+ +
+
๐Ÿ›ก๏ธ
+
Queries Blocked
+
17,304
+ +
+ +
+
๐Ÿ“Š
+
Percentage Blocked
+
23.5%
+ +
+ +
+
๐Ÿ“‹
+
Domains on Adlists
+
254,501
+ +
+
+ + +
+
Total queries over last 24 hours
+
+
+ 1,200 + 1,000 + 800 + 600 + 400 + 200 + 0 +
+
+ +
+
+
+ +
+
+ + +
+
Client activity over last 24 hours
+
+
+ 1,200 + 1,000 + 800 + 600 + 400 + 200 + 0 +
+
+ +
+
+
+ +
+
+ + +
+
+
Query Types
+
+
+ + + + + + + +
+
+ + + + + +
+
+
+ +
+
Upstream servers
+
+
+ + + + + +
+
+ + + +
+
+
+
+
+
+ + diff --git a/services/plex.html b/services/plex.html new file mode 100644 index 0000000..8f4f15e --- /dev/null +++ b/services/plex.html @@ -0,0 +1,431 @@ + + + + + + Plex + + + +
+ ๐Ÿ”’ This is a dummy media server for showcase purposes only. โ† Back to Dashboard +
+ + + +
+
+ +
+ ๐Ÿ”” + โš™๏ธ +
A
+
+
+ +
+
๐ŸŽญ
+
+

Continue Watching

+
2023 โ€ข 2h 15m โ€ข Action, Sci-Fi
+

+ Pick up where you left off. Your personal media server is ready with all your favorite movies and TV shows. +

+
+ + +
+
+
+ +
+
+

Recently Added Movies

+ See all โ†’ +
+
+
+
๐ŸŽฌ
+
The Matrix Resurrections
+
2021 โ€ข 148 min
+
+
+
๐Ÿš€
+
Interstellar
+
2014 โ€ข 169 min
+
+
+
๐Ÿฆธ
+
The Dark Knight
+
2008 โ€ข 152 min
+
+
+
๐Ÿค–
+
Blade Runner 2049
+
2017 โ€ข 164 min
+
+
+
๐ŸŒŒ
+
Dune
+
2021 โ€ข 155 min
+
+
+
โš”๏ธ
+
Inception
+
2010 โ€ข 148 min
+
+
+
+ +
+
+

Continue Watching

+ See all โ†’ +
+
+
+
๐Ÿ“บ
+
Breaking Bad S05E08
+
45 min remaining
+
+
+
๐Ÿ‰
+
House of Dragon S01E03
+
32 min remaining
+
+
+
โš”๏ธ
+
The Witcher S02E05
+
28 min remaining
+
+
+
๐Ÿ•ต๏ธ
+
Sherlock S04E01
+
52 min remaining
+
+
+
+
+ + diff --git a/services/portainer.html b/services/portainer.html new file mode 100644 index 0000000..ebf5261 --- /dev/null +++ b/services/portainer.html @@ -0,0 +1,796 @@ + + + + + + Home - Portainer + + + +
+ ๐Ÿ”’ This is a dummy dashboard for showcase purposes only. โ† Back to Dashboard +
+ +
+ + + + +
+ + + +
+
+
+ ๐Ÿ–ฅ๏ธ + Environments +
+
+ + +
+
+ +
+ Click on an environment to manage +
+ + +
+ + + + + + + +
+ + +
+
+ + +
+
+
+
๐Ÿณ
+
+
+ local + Up + โ†ป 2026-02-02 12:42:53 + Standalone 2.21.3 + /var/run/docker.sock +
+
+ Group: Unassigned + ๐Ÿท๏ธ No tags + โšก Local +
+
+
+
+ + +
+
Disconnected
+ +
+
+
+ +
+
+ ๐Ÿ“š + 12 + stacks +
+
+ ๐Ÿ“ฆ + 24 + containers +
+
+ + 18 + + 2 + + 0 + + 0 +
+
+ ๐Ÿ’พ + 32 + volumes +
+
+ ๐Ÿ–ผ๏ธ + 87 + images +
+
+ ๐Ÿ–ฅ๏ธ + 4 + CPU +
+
+ ๐Ÿ’ฝ + 7.8 + GB RAM +
+
+
+ + +
+
+
+
๐Ÿณ
+
+
+ Compute-01 + Up + โ†ป 2026-02-02 12:42:53 + Standalone 2.21.3 + agent.local:9001 +
+
+ Group: Unassigned + ๐Ÿท๏ธ No tags + โšก Agent 2.21.3 +
+
+
+
+ + +
+
Disconnected
+ +
+
+
+ +
+
+ ๐Ÿ“š + 5 + stacks +
+
+ ๐Ÿ“ฆ + 16 + containers +
+
+ + 14 + + 1 + + 0 + + 0 +
+
+ ๐Ÿ’พ + 10 + volumes +
+
+ ๐Ÿ–ผ๏ธ + 24 + images +
+
+ ๐Ÿ–ฅ๏ธ + 6 + CPU +
+
+ ๐Ÿ’ฝ + 8.2 + GB RAM +
+
+
+
+
+
+ + diff --git a/services/proxmox.html b/services/proxmox.html new file mode 100644 index 0000000..2c45e8e --- /dev/null +++ b/services/proxmox.html @@ -0,0 +1,624 @@ + + + + + + Proxmox Virtual Environment + + + +
+ ๐Ÿ”’ This is a dummy login page for showcase purposes only. โ† Back to Dashboard +
+ + +
+
+ +
Virtual Environment
+
+ + + +
+ + + +
+ +
+ +
+
+ + +
+ + + + +
+ + +
+
+ + +
+
+
Tasks
+
Cluster log
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Start TimeEnd TimeNodeUser nameDescriptionStatus
02/02/2026 12:21:42-pveroot@pamLoginโœ“ OK
02/02/2026 12:20:1502/02/2026 12:20:16pveroot@pamVM 100 - Startโœ“ OK
02/02/2026 12:18:3302/02/2026 12:18:34pveroot@pamVM 101 - Stopโœ“ OK
+
+
+ + + +