Advanced Search
Search Results
32 total results found
Introduction
The self-hosted File Browser (often called filebrowser) is a lightweight open-source web app you can run in Docker (or directly on your system) that lets you manage files on your server through a browser-based interface. Think of it as a simpler, self-hosted a...
Installation
My installation is SSH to my minipc and using Docker Compose. I found that is the easiest way to run my Docker Containers and keep the necessary data persistence. First change directory to your Docker folder (I keep all containers in a Docker folder). Add a...
docker-compose
services: filebrowser: image: filebrowser/filebrowser container_name: filebrowser volumes: - /:/srv #Change to match your directory - ./filebrowser.db:/database.db #Change to match your directory - ./filebrowser.json:/f...
Introduction
The self-hosted Guacamole Docker app runs Apache Guacamole in containers using Docker. Guacamole is a clientless remote desktop gateway – meaning you can access desktops and servers through a web browser without needing special client software. It supports co...
Installation
Installation via SSH to my server and then creating and running a Docker Compose file. First change directory to your Docker folder (I keep all containers in a Docker folder). Add a folder called guacamole. Change directory to the guacamole directory and th...
docker-compose
services: guacamole: container_name: guacamole image: jwetzell/guacamole restart: unless-stopped ports: - 8562:8080 volumes: - ./guacamole:/config:rw environment: TZ: America/Santo_Domingo EXTENSIONS...
Introduction
Glances is an open-source, cross-platform system monitoring tool for Docker containers that provides a real-time dashboard of your system and its running containers. The Docker version is a self-hosted application that allows you to easily monitor your hos...
Installation
Installation is with Docker Compose. With a terminal SSH connection to your server, change directory to your Docker folder (I keep all containers in a Docker folder). Add a folder called glances. Change directory to the glances directory and then add a dock...
docker-compose
services: glances: container_name: glances image: nicolargo/glances:ubuntu-latest-full ports: - 7300:61208 environment: - TZ=America/Santo_Domingo - GLANCES_OPT= -w --password # Glances option to run as ...
Introduction
Dozzle is an open-source, self-hosted tool for viewing and monitoring the logs of Docker containers. Dozzle in Github Here are the key points about Dozzle: What Is Dozzle It gives you a web interface so you can see container logs in real time instead o...
Installation
This installation is the most basic way to deploy Dozzle. The Docker Compose I currently use has a password set up for security and it also runs a separate agent for a separate Docker server. These additions are not included in the installation below. The p...
docker-compose
services: dozzle: container_name: dozzle image: amir20/dozzle:latest restart: unless-stopped ports: - 8892:8080 volumes: - /var/run/docker.sock:/var/run/docker.sock environment: - TZ=America/Santo_Domingo...