Home

Awesome

Starbase 80

DR T'ANA: (to Mariner) "You wanna goof around, go work on Starbase 80!"<br /> JET: "Damn, Starbase 80?!"

About

A nice looking homepage for Docker containers or any services and links.

No actual integration with Docker. Loads instantly. Dark mode follows your OS.

If you make a change to the config JSON, restart this container and refresh.

Inspired by Ben Phelps' Homepage and Umbrel. Dedicated to Star Trek: Lower Decks.

Docker and source code

Live demo

Preview

<img src="./preview.jpg" alt="Light mode" /> <br /> <img src="./preview-dark.jpg" alt="Dark mode" />

Change history

1.5.2

1.5.1

1.5.0

1.4.2

1.4.0

1.3.0

1.2.0

Docker

Sample Docker compose

services:
    starbase80:
        image: jordanroher/starbase-80
        ports:
            - 80:4173
        environment:
            - TITLE=Starbase 80
            - LOGO=/starbase80.jpg
        volumes:
            - ./config.json:/app/src/config/config.json
            - ./public/favicon.ico:/app/public/favicon.ico
            - ./public/logo.png:/app/public/logo.png
            - ./public/icons:/app/public/icons

Environment variables

VariableDefaultNotes
TITLEMy WebsiteSet to TITLE= to hide the title
LOGO/logo.pngSet to LOGO= to hide the logo
HEADERtrueSet to false to hide the title and logo
HEADERLINEtrueSet to false to turn off the header border line
CATEGORIESnormalSet to "small" for smaller, uppercase category labels
BGCOLORtheme(colors.slate.50)Background color for light mode. Set to any hex color or Tailwind color using the theme syntax.
BGCOLORDARKtheme(colors.gray.950)Background color for dark mode. Set to any hex color or Tailwind color using the theme syntax.
NEWWINDOWtrueSet to false to not have links open in a new window
THEMEautoSet to "auto", or "dark" to force a display mode (e.g. dark mode)
HOVERnoneSet to "underline" for an underline effect on titles when hovering/focusing on that service

Volumes (bind mounts)

PathRequiredNotes
/app/src/config/config.jsontrueConfiguration with list of sites and links
/app/public/favicon.icofalseWebsite favicon
/app/public/logo.pngfalseLogo in the header
/app/public/iconsfalseOr wherever you want to put them, JSON icon paths are relative to /app/public

Configuration

Sample config.json

[
	{
		"category": "Services",
		"services": [
			{
				"name": "Archivebox",
				"uri": "https://archivebox.mywebsite.com",
				"description": "Backup webpages",
				"icon": "/icons/archivebox.jpg"
			},
			{
				"name": "Authelia",
				"uri": "https://auth.mywebsite.com",
				"description": "Authentication",
				"icon": "/icons/authelia.png"
			},
			{
				"name": "Calibre",
				"uri": "https://calibre.mywebsite.com",
				"description": "eBook library",
				"icon": "/icons/calibre.png"
			}
		]
	},
	{
		"category": "Devices",
		"bubble": true,
		"services": [
			{
				"name": "Router",
				"uri": "http://192.168.1.1/",
				"description": "Netgear Orbi",
				"icon": "/icons/router.png"
			},
			{
				"name": "Home Assistant",
				"uri": "http://homeassistant.local:8123/",
				"description": "Home automation",
				"icon": "home-assistant",
				"iconBubble": false
			},
			{
				"name": "Synology",
				"uri": "http://synology:5000",
				"description": "Network storage",
				"icon": "/icons/synology.png"
			}
		]
	}
]

Category variables

NameDefaultRequiredNotes
categoryfalseDisplays above the list of services
bubblefalsefalseShows a bubble around category
servicestrueArray of services

Service variables

NameDefaultRequiredNotes
nametrueTitle of service
uritrueHyperlink to resource
descriptionfalse2-3 words which appear below the title
iconfalseRelative URI, absolute URI, service name (Dashboard icon) or mdi-service name (Material Design icon)
iconBGfalseBackground color for icons. Hex code or Tailwind color (do not prefix with bg-).
iconColorfalseOnly used as the fill color for Material Design icons. Hex code or Tailwind color (do not prefix with bg-).
iconBubbletruefalseIf false the bubble and shadow are removed from the icon
iconAspectsquarefalseSet to "width" or "height" to constrain the icon to the width or height of the icon, respectively
newWindowfalseSet to true or false to override the environment variable NEWWINDOW for this service

Icons

Volume / bind mount

Create a volume or bind mount to a subfolder of /app/public and specify a relative path.

# Your folder
compose.yml
- icons
  - jellyfin.jpg
  - ghost.jpg
  - etc

# Bind mount
./icons:/app/public/icons

# Icon in config.json
"icon": "/icons/jellyfin.jpg"

Dashboard icons

Use Dashboard icons by specifying a name without any prefix.

# Icon in config.json
"icon": "jellyfin"

Material design

Use any Material Design icon by prefixing the name with mdi-.

Fill the icon by providing an "iconColor."

Use "black" or "white" for those colors.

# Icon in config.json
"icon": "mdi-cloud",
"iconColor": "black"