Web Analytics

iso

⭐ 151 stars English by Coyenn

Iso dashboard screenshot


Demo | Docker | GitHub

Iso is a plug-and-play dashboard for all your self-hosted services. Built for my personal homelab — now open-sourced for yours.

‍️Quick Start

Docker

docker run -d \
  --name iso \
  -p 3000:3000 \
  -e AUTH_SECRET="changeme" \
  -e AUTH_PASSWORD="changeme" \
  -v ./config:/config \
  coyann/iso

Docker Compose

services:
  iso:
    image: coyann/iso:latest
    container_name: iso
    ports:
      
  • "3000:3000"
environment:
  • AUTH_SECRET=changeme
  • AUTH_PASSWORD=changeme
volumes:
  • ./config:/config
restart: unless-stopped

Open http://localhost:3000 and you're up and running!

Configuration

Iso is configured through a single config.json file located in the /config directory.

Example Configuration

{
  "title": "My Dashboard",
  "services": [
    {
      "order": 1,
      "icon": "tv",
      "label": "Plex",
      "href": "https://plex.example.com"
    },
    {
      "order": 2,
      "icon": "lock",
      "label": "Bitwarden",
      "href": "https://vault.example.com"
    }
  ],
  "locale": "en",
  "theme": "amethyst",
  "greetings": [],
  "pageLoadAnimation": true,
  "search": {
    "enabled": true,
    "engine": "google",
    "engineUrl": "",
    "placeholder": "Search ..."
  }
}

Configuration Options

Environment Variables

| Variable | Description | Default | Required | |----------|-------------|---------|----------| | AUTH_SECRET | Secret key for authentication | - | No | | AUTH_PASSWORD | Password for dashboard access | - | No | | APP_DATA_PATH | Path to config directory | /config | No |

More Screenshots

Iso settings screenshot Iso login screenshot

Development

Prerequisites

Or

Local Setup

git clone https://github.com/Coyenn/iso.git
cd iso
bun install

bun dev

License

Distributed under the MIT License. See LICENSE for more information. --- Tranlated By Open Ai Tx | Last indexed: 2025-12-11 ---