Skip to main content

🚀 Installation

Homarr can be installed in many ways. For most users, Installation using Docker will be sufficient and the easiest.


Installation using Docker

Docker is a free Software that isolates Homarr using containers. Using Docker, you can run Homarr on any supported plattform (including Windows and Raspberry Pi), easily.

Prerequisites

Installation

To install Homarr using Docker, simply run the following command.

docker run  \
--name homarr \
--restart unless-stopped \
-p 7575:7575 \
-v <your-path>/homarr/configs:/app/data/configs \
-v <your-path>/homarr/icons:/app/public/icons \
-d ghcr.io/ajnart/homarr:latest
note

Docker will mount the configuration files and icons to your host machine. Please make sure to replace <your-path> from the docker run command with your desired storage location. The path must be absolute.

Updating

To update Homarr, you must remove your container first. Make sure that you've mounted your data and that you have access to it, so your configuration doesn't get lost.

  1. Run docker rm homarr to remove the container.
  2. Pull the latest Homarr image docker pull ghcr.io/ajnart/homarr:latest.
  3. Re-run the command you used to install Homarr.

This process can get tideous, if you update frequently. Thus, we recommend the installation using docker-compose for more experienced users.

tip

Want to update all your containers automatically? Checkout Watchtower a service which will automatically update your containers on a set interval.


Installation using Docker Compose or Portainer Stacks

Prerequisites

Installing

To install Homarr using Docker Compose, simply create a file called docker-compose.yml and paste the following code into it.

docker-compose.yml
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:
- ./homarr/configs:/app/data/configs
- ./homarr/icons:/app/public/icons
ports:
- '7575:7575'

Then, run docker-compose up -d in the same directory. This will start the Homarr container in the background.

Updating

To update Homarr using Docker Compose or Portainer Stacks, simply pull the latest image and restart the container.

  1. Run docker pull ghcr.io/ajnart/homarr:latest to pull the latest image.
  2. Re-run docker-compose up -d or re-deploy the stack in Portainer.

Installation using the Unraid Community App Store

You can install Homarr directly from your Unraid Dashboard, no terminal required.

Prerequisites

Install the Community Apps Plugin

Open Installation Guide

tip

Don't know whether you have the plugin installed or not? Search for this tab in the navigation:

Installing

After you've installed the Community Apps Plugin, you can install Homarr from the Unraid Dashboard.

  1. Navigate to the tab "Apps".
  2. Search for "Homarr" and click on the result.
  3. Click on "Install" and adjust the settings to your liking.

After you've installed Homarr, you can find it under the tab "Docker".

The official support thread is located here, but we prefer to communicate over GitHub and Discord instead.


Installation on Synology

The installation process is quite easy and fast on Synology devices. Since this method is used less often, we recommend you to follow this guide written by mariushosting.

https://mariushosting.com/how-to-install-homarr-on-your-synology-nas/

note

This is a third party guide! It might not be up-to-date, nor do we offer official support.


Installation on QNAP

When installing on QNAP, we recommend you to install Homarr using Container Station or this third-party image.

There is also a guide available, but note that it is written in Chinese: https://post.smzdm.com/p/awzm7op2/

caution

This is a unvalidated third party guide! It might not be up-to-date, nor do we offer official support.


Installation using Saltbox

You can also use this to install on Saltbox:

    sb install sandbox-homarr
caution

This is a unvalidated third party guide! It might not be up-to-date, nor do we offer official support.


Building from source

info

Installing Homarr from source is not recommended and only intended for developers and contributers, please use the Docker installation method instead.

  1. Clone the Repository using git clone https://github.com/ajnart/homarr.git
  2. Enter the created directory using cd homarr
  3. Install all dependencies using yarn install
  4. Build the source using yarn build
  5. Start the NextJS web server using yarn start
  6. Alternatively, use yarn dev to run a live development server.

Troubleshooting

Having trouble installing Homarr on your system? Check out our FAQ and Known Issues. If you are still running into issues, please contact us in our Discord server.


Anything else in mind?

Have you installed Homarr using a different method? Please share it with us, so we can expand to a bigger userbase!