Uptime Kuma

Introduction Uptime-Kuma is an open-source, self-hosted website monitoring tool. It can check the uptime and response time of websites, APIs, and other services at regular intervals and alert you if any of them go down. The Docker Compose File --- services: uptime-kuma: image: docker.io/louislam/uptime-…

Duplicati

Introduction Duplicati is a backup client that securely stores encrypted, incremental, compressed remote backups of local files on cloud storage services and remote file servers. Duplicati supports not only various online backup services like OneDrive, Amazon S3, Backblaze, Rackspace Cloud Files, Tahoe LAFS, and Google Drive, but also any servers…

Jellyfin

Introduction Jellyfin is the volunteer-built media solution that puts you in control of your media. Stream to any device from your own server, with no strings attached. Your media, your server, your way. The Docker Compose File --- services: jellyfin: image: ghcr.io/jellyfin/jellyfin:latest container_name: jellyfin hostname:…

Plex

Introduction Plex Media Server is a software application that allows you to organize and stream your collection of movies, TV shows, music, and photos, from a central location. Think of it like having your own personal Netflix or Spotify server that you can access from various devices. It's…

Wordpress (with MySQL)

Introduction WordPress is a web content management system. It was originally created as a tool to publish blogs but has evolved to support publishing other web content, including more traditional websites, mailing lists and Internet forum, media galleries, membership sites, learning management systems and online stores. MySQL is an open-…

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/…

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:…

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…