FreshRSS

Introduction FreshRSS is a self-hosted RSS and Atom feed aggregator. It is lightweight, easy to work with, powerful, and customisable. The Docker Compose File --- services: freshrss: image: docker.io/freshrss/freshrss:latest container_name: freshrss hostname: freshrss restart: unless-stopped security_opt: - no-new-privileges:true environment: - TZ=Europe/…

sudo Touch ID on MacBook

To allow TouchID on your Mac to authenticate you for sudo access instead of a password you need to do the following. * Open Terminal * Switch to the root user with sudo su - * Edit the /etc/pam.d/sudo file with a command-line editor such as nano * The contents of…

How to setup Automatic Updates on Debian

Introduction One central part of keeping Linux servers secure is installing security updates on time. This is one of the critical tasks for Linux admins to make the system up-to-date. In addition, it keeps your system more stable and secure. Therefore, as a system administrator, regularly updating the…

File Browser

Introduction File Browser is an open-source, self-hosted file browser. The Docker Compose File --- services: filebrowser: image: docker.io/filebrowser/filebrowser:latest container_name: filebrowser hostname: filebrowser restart: unless-stopped security_opt: - no-new-privileges:true environment: - TZ=Europe/Stockholm - PUID=1000 - PGID=1000 volumes: - /opt/stacks/filebrowser/config:…

Enable sudo without a password

edit /etc/sudoers sudo visudo Then find the admin group permission section: %admin ALL = (ALL) ALL %wheel ALL=(ALL) ALL Change to add NOPASSWD: %admin ALL = (ALL) NOPASSWD: ALL user ALL=(ALL) NOPASSWD: ALL Be aware that removing the password requirement to use sudo eliminates a level of security. If…

Dozzle

Introduction Dozzle is open-sourced project sponsored by Docker OSS. It is a log viewer designed to simplify the process of monitoring and debugging containers. It is a lightweight, web-based application that provides real-time log streaming, filtering, and searching capabilities through an intuitive user interface. The Docker Compose…