Fork me on GitHub

Herr Knedel/Great things with containers: Heimdall as a home page

Created Sun, 28 Feb 2021 00:00:00 +0000 Modified Mon, 28 Mar 2022 18:10:14 +0000 Difficulty level: It may take a little longer

129 Words

I run many services in my Homelab network, for example LDAP, Gitlab, Atlassian Bamboo, Atlassian Confluence, Atlassian Jira, Jenkins, WordPress, Grafana, Graylog ,ESXI/VMware, Calibre and many more. It’s easy to get lost in the shuffle.

Step 1: Create working folder

Use this command to create a temporary working folder:

x
+
Terminal

$ mkdir /tmp/bilder

Heimdall is a service that allows you to manage bookmarks via Dashboard. Since I use Docker for Desktop, I just need to put this Docker Compose file in a local folder:

version: "2.1"
services:
  heimdall:
    image: linuxserver/heimdall
    container_name: heimdall
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Berlin
    volumes:
      - /Users/christianknedel/docker/heimdall/config:/config
    ports:
      - 80:80
      - 443:443
    restart: always

This file is started via Docker Compose:

x
+
Terminal

$ ocker-compose -f compose-file.yml up -d