Table of Contents
Homarr is a contemporary dashboard that enables easy server management, placing all of your apps and services within reach. It streamlines the process by allowing you to access and manage everything through one interface, simplifying your workload. The platform integrates effortlessly with your added apps and provides in-depth insights, leaving you with control over your server. Furthermore, Homarr is simple to install and supports various deployment methods, making it a flexible addition to your server management setup.​
Developer Tools #
Docker Compose #
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:
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
- ./homarr/configs:/app/data/configs
- ./homarr/icons:/app/public/icons
- ./homarr/data:/data
ports:
- '7575:7575'
Docker (Not Reccomended) #
docker run \
--name homarr \
--restart unless-stopped \
-p 7575:7575 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v <your-path>/homarr/configs:/app/data/configs \
-v <your-path>/homarr/data:/data \
-v <your-path>/homarr/icons:/app/public/icons \
-d ghcr.io/ajnart/homarr:latest
Other Ways to Install #
https://homarr.dev/docs/getting-started/installation/