Homer Dashboard - NixOS Container Setup


I was looking for a simple dashboard that I could use as a home page on my clients. I found it. Homer describes itself as: A dead simple static HOME for your server to keep your services on hand from a simple yaml config.

The dashboard is indeed easy to configure, dark mode is also present and you can group tiles. And you can add extra features to tiles, such as displaying info about Pi-hole.


Configuration

This container is configured for use with NixOS and Podman. My configuration is probably easy to translate to Podman or Docker running on another OS.

NixOS specific

If you are not using NixOS, skip the steps below and go to Container.

For each container I put the Podman container configuration in a separate nix file. Then I refer to this file in the NixOS configuration.nix like this:

containers = {
	homer = import ./containers/homer.nix;
};

I also make sure that a macvlan network (net_macvlan) has been created via the NixOS configuration.nix so that the containers have their own network and their own IP address:

systemd.services.create-podman-network = with config.virtualisation.oci-containers; {
	serviceConfig.Type = "oneshot";
	wantedBy = [ "${backend}-homer.service" ];
	script = ''${pkgs.podman}/bin/podman network exists net_macvlan || \ ${pkgs.podman}/bin/podman network create --driver=macvlan --gateway=192.168.xx.1 --subnet=192.168.xx.0/24 -o parent=ens18 net_macvlan'';
};

Adjust the following:

192.168.xx.1 and 192.168.xx.0/24
Replace xx with your own range / VLAN tag

parent=ens18
Replace ens18 with the name of your network interface

Also add the following to the NixOS configuration.nix to make sure the folders are created that are used by containers:

# Create directories for the containers
  system.activationScripts = {
    script.text = ''
      install -d -m 755 /home/USER/homer/assets -o root -g root
    '';
  };

Adjust the following:

USER
Replace USER with your NixOS user

Here you can view the full NixOS configuration.nix.
Then I created homer.nix:

mkdir -p /etc/nixos/containers # make sure the directory exists
sudo nano /etc/nixos/containers/homer.nix
Container

The configuration below might also help you if you don’t use NixOS and use the podman/docker run command, for example.

Copy the below to homer.nix:

{
  image = "b4bz/homer:latest";

  environment = {
    "TZ" = "Europe/Amsterdam";
  };

  user = "root:root";

  volumes = [
    "/home/USER/homer/assets:/www/assets"
  ];

  extraOptions = [
    "--pull=newer" # Pull if the image on the registry is newer than the one in the local containers storage
    "--name=homer"
    "--hostname=homer"
    "--network=net_macvlan"
    "--ip=IP"
    "--mac-address=MAC"
  ];
}

Adjust the following if needed:

“TZ” = “Europe/Amsterdam”
Pick the right timezone

“/home/USER/homer/assets:/www/assets”
Replace USER with your username

”–pull=newer”
Disable this option if you do not want the image to be automatically replaced by new versions

”–network=net_macvlan”
Make sure you have created a macvlan network. Replace net_macvlan with the name of your network

”–ip=IP”
Choose an IP address for this container. Make sure it is within the range of the macvlan network

”–mac-address=MAC”
Enter a (randomly generated) MAC address. Otherwise, every time the container is started, a new mac address will be used, which for example will be created as a new device within the Unifi Network Application. Or temporarily disable this option and use the mac address that is then generated (instead of random generation): sudo podman inspect homer |grep MacAddress|tr -d ' ,"'|sort -u

Exit Nano (CTRL-X) and save the changes.

Switch NixOS configuration

Now you can switch to the new configuration within NixOS, the image will be downloaded and the container will be created:

sudo nix-collect-garbage # optional: clean up
sudo nixos-rebuild switch

Check that the container is working properly:

journalctl -u podman-homer.service
Using Homer

The dashboard can be reached via the URL:

http://<IP>:8080/

For an explanation of how to access Homer with a local domain name (local reverse proxy), for example homer.home.arpa served over HTTPS, please see this note.


Read other notes

Comments

    No comments found for this note.

    Join the discussion for this note on this ticket. Comments appear on this page instantly.

    Tags


    Notes mentioning this note


    Notes Graph