Homepage

A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
 
services:
  homepage:
    image: ghcr.io/gethomepage/homepage:latest
    container_name: homepage
    environment:
      PUID: 1000 # optional, your user id
      PGID: 1000 # optional, your group id
    ports:
      - 3000:3000
    volumes:
      - /path/to/config:/app/config # Make sure your local config directory exists
      - /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker integrations
    restart: unless-stopped

Resources

Website: https://gethomepage.dev/

GitHub: https://github.com/gethomepage/homepage

GitHub Container Registry: https://github.com/gethomepage/homepage/pkgs/container/homepage

Configuration: https://gethomepage.dev/latest/installation/docker/