Recently, I spent quite a few time to look for an application which can provide me a list for organizing my personal web applications created in the cloud and at home. That is one of my reason I created my bookmark navigation website based a github project. It works great and I am using it to organize all of my bookmarks and website collections. If you have same thinking, please check out nav.51sec.org to find out more. But I need something simpler, less hierarchy levels, easy to deploy and easy to add and modify entries. I did find some of interesting one and I would like to show you some popular ones in this post.

DashMachine

Github Page: https://github.com/rmountjoy92/DashMachine

Docker hub page: https://hub.docker.com/r/rmountjoy/dashmachine

Features:

  • Access control system
  • Sidebar design
  • Powerful plugin to add source data
  • Multiple card types 
  • Single ini file to store configuration

Docker Run: (Not support Arm64 architecture)

docker run -d \
  --name=dashmachine \
  -p 5000:5000 \
  -v /data:/dashmachine/dashmachine/user_data \
  --restart unless-stopped \
  rmountjoy/dashmachine:latest
Default Username / Password : admin/admin

Configuration Page:

Heimdall

Heimdall Application Dashboard is a dashboard for all your web applications. 

Website: https://heimdall.site/
Github page:https://github.com/linuxserver/Heimdall

Docker hub page: https://hub.docker.com/r/linuxserver/heimdall/

Features:

  • Docker image supports arm64 architecture
  • Preadded foundation application icons
  • Enhanced application supports api
  • Easily add your own applications and bookmarks
  • Integrated with search engine such as Google, Bing, DuckDuckGo and more

Heimdall github repo page here.

docker run -d \
  --name=heimdall \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=America/Toronto \
  -p 5080:80 \
  -p 5443:443 \
  -v /data:/config \
  --restart unless-stopped \
  ghcr.io/linuxserver/heimdall


Homer

Demo page: https://homer-demo.netlify.app/

Features: 

  • Simple YAML file to edit
  • Optional notice message
  • Create bookmark groups
  • Search bookmarks
docker run -d \
  --name=homer \
  -p 8888:8080 \
  -v /data:/www/assets \
  --restart=always \
  b4bz/homer:latest

YouTube:

CF-Worker-DIR

Github : https://github.com/51sec/CF-Worker-Dir

Post: Build a Serverless Bookmark Website Use Cloudflare Worker

Features:

  • Serverless and super fast
  • Optional search bar
  • Auto fetch favicon
  • Group for links
  • Configuration and Data are stored in text based script.

By Jon

Leave a Reply