commit a8581428ac837a93db26748fd7294b5e577329f0 Author: ejones Date: Tue Jun 16 18:22:07 2026 -0400 inital commit 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