Posts

Showing posts from January, 2026

Link-Based Docker Containers

I use the following three link-based docker containers:  Homepage  Heimdall  Linkding  I really love all three of these containers. Homepage and Heimdall are especially useful to set up links to your docker container web sites. Linkding is very useful for searching through web site links that you save and for setting up tags. I describe the docker-compose.yml files and other configuration files that I use in the following sections.  Homepage  Hompage lets you set links to services and websites that you use frequently. It uses configuration files for setting the links, backgrounds, and icons.   Here is the docker-compose.yml file that I use. services : homepage : image : ghcr.io/gethomepage/homepage:latest container_name : homepage ports : - 3001:3000 # Map host port 3000 to container port 3000 volumes : - ./config:/app/config # Mount a local directory for configuration files #- /var/run/docker.sock:/var...

Portainer Docker Container

Image
A must h ave for running Docker. Shows all your containers, images, and volumes. It lets you stop and start the containe rs and shows the ports that they are running on. Here's its docker-compose.yml: services : portainer : container_name : portainer image : portainer/portainer-ce:lts restart : no volumes : - /var/run/docker.sock:/var/run/docker.sock - portainer_data:/data ports : - 9443:9443 #- 8000:8000 # Optional: only needed if you plan to use the Edge Agent volumes : portainer_data : name : portainer_data This is a screen grab of the Portainer web page.