Advanced Search
Search Results
63 total results found
Glances
Glances App
docker-compose
services: db: image: postgres:16 container_name: joplin-db volumes: - ./data:/var/lib/postgresql/data ports: - "5432:5432" restart: unless-stopped environment: ...
Dozzle
Docker Compose
Permission commands for new folders
I have a 4TB USB storage device connected to my Ubuntu server, It's overkill, but I don't have to worry about storage at all. My Docker folders are on that device and they are backed up to my NAS with Duplicati and all works well. The first time I used it, I ...
Dozzle App
Docker Compose
Introduction
There are quite a few open source dashboard apps and many of them seem to have more bells and whistles than Heimdall. It is certainly not the most popular dashboard if Youtube is anything to go by, but it is certainly the one that I have stuck with and suits m...
Installation
This is another installation which I first installed on Container Manager in my Synology NAS, then to a Portainer Stack and then on to a simple Docker Compose file via SSH to my minipc server. Every migration was done seamlessly without loss of data. First ...
docker-compose
services: heimdall: image: lscr.io/linuxserver/heimdall:latest container_name: heimdall environment: - PUID=1000 #change to your own userID - PGID=1000 #change to your own groupID - TZ=America/Santo_Domingo #change to y...
User IDs from command line
Many Docker containers need UserID and GroupID. The environment variables can be slightly different for each compose file, e.g: PUID, UID, GUID, GID or similar. The ID numbers can vary depending on your operating system. On my Synology NAS, both IDs = 1026. ...
Which Timezone
Many Docker Container compose files ask for your timezone, with something like "TZ = " or "TZ:" If you are not sure of your timezone as regards to Linux and/or Docker nomenclature, you may be able to find it with the following command on the terminal of your ...
Reverse Proxy
Two requisites for this: DSM version 7 or above (It can be done on DSM version 6, but the steps may be a little different). Should be able to acquire a synology.me certificate.
docker-compose.yml
services: bookstack: image: lscr.io/linuxserver/bookstack:25.02.2 container_name: bookstack environment: - PUID=1000 - PGID=1000 - APP_KEY=base64:<Generate your free APP_KEY at https://generate-random.org/laravel-key-ge...
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...