From a8581428ac837a93db26748fd7294b5e577329f0 Mon Sep 17 00:00:00 2001 From: ejones Date: Tue, 16 Jun 2026 18:22:07 -0400 Subject: [PATCH] inital commit --- Dockerfile | 11 +++ README.md | 9 +++ docker-compose.yml | 7 ++ index.html | 168 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 195 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md create mode 100644 docker-compose.yml create mode 100644 index.html diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6269d48 --- /dev/null +++ b/Dockerfile @@ -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;"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..fedd468 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +```yaml +services: + web: + image: gitea.easye.me/ejones/home-dashboard:latest + ports: + - 8096:80 + restart: unless-stopped +networks: {} +``` diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..1f49473 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,7 @@ +services: + web: + image: gitea.easye.me/ejones/home-dashboard:latest + ports: + - 8096:80 + restart: unless-stopped +networks: {} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..7cf1de0 --- /dev/null +++ b/index.html @@ -0,0 +1,168 @@ + + + + + + Home Server Dashboard + + + +
+

Welcome Home

+

Select a service to get started.

+
+ +
+ + Jellyfin Icon +

Jellyfin

+

Movies & TV Shows

+
+ + + Navidrome Icon +

Navidrome

+

Music Streaming

+
+ + + Immich Icon +

Immich

+

Photo Management

+
+ + + Gitea Icon +

Gitea

+

Code & Git Repos

+
+ + + Share Icon +

Share

+

File Sharing

+
+ + + Odysee Icon +

Ody

+

Media & Services

+
+
+ + + + \ No newline at end of file