inital commit

This commit is contained in:
2026-06-16 18:22:07 -04:00
commit a8581428ac
4 changed files with 195 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Use the official lightweight Nginx image
FROM nginx:alpine
# Copy the static HTML file into the Nginx web root directory
COPY index.html /usr/share/nginx/html/
# Expose port 80 to the outside world
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]
+9
View File
@@ -0,0 +1,9 @@
```yaml
services:
web:
image: gitea.easye.me/ejones/home-dashboard:latest
ports:
- 8096:80
restart: unless-stopped
networks: {}
```
+7
View File
@@ -0,0 +1,7 @@
services:
web:
image: gitea.easye.me/ejones/home-dashboard:latest
ports:
- 8096:80
restart: unless-stopped
networks: {}
+168
View File
@@ -0,0 +1,168 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Server Dashboard</title>
<style>
:root {
--bg-gradient-start: #0f172a;
--bg-gradient-end: #1e1b4b;
--card-bg: #1e293b;
--card-hover-bg: #334155;
--text-primary: #f8fafc;
--text-secondary: #94a3b8;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body {
background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
background-attachment: fixed;
color: var(--text-primary);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
}
header {
text-align: center;
margin-bottom: 4rem;
margin-top: 2rem;
}
h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
background: linear-gradient(to right, #38bdf8, #818cf8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
p.subtitle {
font-size: 1.1rem;
color: var(--text-secondary);
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
width: 100%;
max-width: 1000px;
}
.card {
background-color: var(--card-bg);
border-radius: 16px;
padding: 2rem;
text-decoration: none;
color: var(--text-primary);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.card:hover {
transform: translateY(-5px);
background-color: var(--card-hover-bg);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
border-color: rgba(255, 255, 255, 0.1);
}
.icon {
width: 3rem;
height: 3rem;
margin-bottom: 1rem;
object-fit: contain;
}
.card h2 {
font-size: 1.25rem;
margin-bottom: 0.5rem;
font-weight: 600;
}
.card p {
font-size: 0.9rem;
color: var(--text-secondary);
}
footer {
margin-top: auto;
padding-top: 4rem;
color: var(--text-secondary);
font-size: 0.875rem;
}
@media (max-width: 600px) {
h1 {
font-size: 2rem;
}
.grid-container {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<header>
<h1>Welcome Home</h1>
<p class="subtitle">Select a service to get started.</p>
</header>
<main class="grid-container">
<a href="http://jellyfin.easye.me/" class="card">
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/jellyfin.svg" alt="Jellyfin Icon" class="icon">
<h2>Jellyfin</h2>
<p>Movies & TV Shows</p>
</a>
<a href="http://navidrome.easye.me/" class="card">
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/navidrome.svg" alt="Navidrome Icon" class="icon">
<h2>Navidrome</h2>
<p>Music Streaming</p>
</a>
<a href="http://immich.easye.me/" class="card">
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/immich.svg" alt="Immich Icon" class="icon">
<h2>Immich</h2>
<p>Photo Management</p>
</a>
<a href="http://gitea.easye.me/" class="card">
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/gitea.svg" alt="Gitea Icon" class="icon">
<h2>Gitea</h2>
<p>Code & Git Repos</p>
</a>
<a href="http://share.easye.me/" class="card">
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/nextcloud.svg" alt="Share Icon" class="icon">
<h2>Share</h2>
<p>File Sharing</p>
</a>
<a href="http://ody.easye.me/" class="card">
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/svg/odysee.svg" alt="Odysee Icon" class="icon">
<h2>Ody</h2>
<p>Media & Services</p>
</a>
</main>
<footer>
<p>Ezra's Home Server &copy; 2026</p>
</footer>
</body>
</html>