Deploy an awesome dashboard with Homarr!

A simple, yet powerful dashboard for your server.

Simplify the management of your server with Homarr - a sleek, modern dashboard that puts all of your apps and services at your fingertips. With Homarr, you can access and control everything in one convenient location. Homarr seamlessly integrates with the apps you've added, providing you with valuable information and giving you complete control. Installation is a breeze, and Homarr supports a wide range of deployment methods.

Functioning Portainer Docker Stack Example:

version: '3'
#---------------------------------------------------------------------#
#     Homarr - A simple, yet powerful dashboard for your server.     #
#---------------------------------------------------------------------#
services:
  homarr:
    container_name: homarr
    image: ghcr.io/ajnart/homarr:latest
    restart: unless-stopped
    volumes:
      - configs:/app/data/configs
      - icons:/app/public/icons
    ports: # exposed-port:internal-port
      - '7575:7575'

volumes:
  configs:
    driver: local
  icons:
    driver: local