Pingvin Share

Introduction A self-hosted file sharing platform that combines lightness and beauty, perfect for seamless and efficient file sharing. The Docker Compose File --- version: "3.8" services: pingvin-share: image: stonith404/pingvin-share:latest container_name: pingvin-share hostname: pingvin-share restart: unless-stopped security_opt: - no-new-privileges:true environment: - TZ=Europe/…

phpMyAdmin

Introduction phpMyAdmin is a free and open source administration tool for MySQL and MariaDB. As a portable web application written primarily in PHP, it has become one of the most popular MySQL administration tools, especially for web hosting services. The Docker Compose File --- version: "3.8" services:…

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 --- version: "3.8" services: uptime-kuma: image: louislam/uptime-kuma:…

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 --- version: "3.8" services: jellyfin: image: jellyfin/jellyfin:latest container_…

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

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 --- version: "3.8" services: freshrss: image: freshrss/freshrss:latest container_name: freshrss hostname: freshrss restart: unless-stopped security_opt: - no-new-privileges:true environment: -…