<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.kptree.net/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.kptree.net/feed.php">
        <title>KPTree Wiki</title>
        <description></description>
        <link>https://wiki.kptree.net/</link>
        <image rdf:resource="https://wiki.kptree.net/_media/wiki:dokuwiki.svg" />
       <dc:date>2026-09-13T18:09:18+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.kptree.net/docker_notes:docker?rev=1768611790&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.kptree.net/docker_notes:docker-mailserver?rev=1787485304&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.kptree.net/docker_notes:vnc?rev=1751711810&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.kptree.net/docker_notes:docker-dns?rev=1771115844&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.kptree.net/docker_notes:ntp?rev=1763129565&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.kptree.net/docker_notes:vm-container?rev=1766458124&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.kptree.net/docker_notes:docker-dhcp?rev=1775866774&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.kptree.net/docker_notes:docker-nextcloud?rev=1787484737&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.kptree.net/docker_notes:fileshare?rev=1736047559&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.kptree.net/docker_notes:diun-ntfy?rev=1733484956&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.kptree.net/_media/wiki:dokuwiki.svg">
        <title>KPTree Wiki</title>
        <link>https://wiki.kptree.net/</link>
        <url>https://wiki.kptree.net/_media/wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://wiki.kptree.net/docker_notes:docker?rev=1768611790&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-01-17T01:03:10+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Docker</title>
        <link>https://wiki.kptree.net/docker_notes:docker?rev=1768611790&amp;do=diff</link>
        <description>linux docker cli installation network volume iptables nftables portainer

Docker

Docker is a set of platform as a service (PaaS) products that use OS-level virtualization to deliver software in packages called _containers_. The service has both free and premium tiers. The software that hosts the containers is called Docker Engine</description>
    </item>
    <item rdf:about="https://wiki.kptree.net/docker_notes:docker-mailserver?rev=1787485304&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-08-23T11:41:44+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Docker mailserver</title>
        <link>https://wiki.kptree.net/docker_notes:docker-mailserver?rev=1787485304&amp;do=diff</link>
        <description>linux docker mail mailserver alpine dovecot postfix sqlite s6 s6-rc

Docker mailserver

This mailserver setup follows Workaround&#039;s SPmail guide for Debian 13 “Trixie”.  Key changes are that instead of installing on Debian 13 virtual machine1, with a Maria mysql database2, this setup is for installation on latest Alpine linux Docker image with s6-rc init using maria database.  I toyed with sqlite and basically got it functional, however the support apps do not function with sqlite, so I went back…</description>
    </item>
    <item rdf:about="https://wiki.kptree.net/docker_notes:vnc?rev=1751711810&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-07-05T10:36:50+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>VNC</title>
        <link>https://wiki.kptree.net/docker_notes:vnc?rev=1751711810&amp;do=diff</link>
        <description>linux docker vnc guacamole

VNC

I set up Guacamole using Install Guacamole on Docker – VNC, SSH, SFTP, and RDP like a Boss!.

	*  &lt;ctrl&gt;&lt;shift&lt;alt&gt; keystroke in a Guacamole session opens and closes the Guacamole control panel.

My docker-compose.yml

---
services:
# MariaDB - MySQL Database
  mariadb:
    container_name: guac_db
    image: linuxserver/mariadb:latest
    restart: always
    networks:
#      - proxy
      - guac
    security_opt:
      - no-new-privileges:true
#    ports:
#      …</description>
    </item>
    <item rdf:about="https://wiki.kptree.net/docker_notes:docker-dns?rev=1771115844&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-02-15T00:37:24+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Docker - DNS Server</title>
        <link>https://wiki.kptree.net/docker_notes:docker-dns?rev=1771115844&amp;do=diff</link>
        <description>linux docker dns bind9

Docker - DNS Server

What Is DNS and How Does It Work – A Comprehensive Guide

I have been using Bind9 as my home LAN DNS for the past few years. I originally operated it on bare metal on my home router computer.  In mid 2023 I successfully moved my Bind9 primary instance to my main home server in a container and created a slave instance in a container running on my home router computer.  I created a Docker Bind9 Image using base Docker Alpine Linux images, with S6 init s…</description>
    </item>
    <item rdf:about="https://wiki.kptree.net/docker_notes:ntp?rev=1763129565&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-11-14T14:12:45+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>ntp</title>
        <link>https://wiki.kptree.net/docker_notes:ntp?rev=1763129565&amp;do=diff</link>
        <description>ntp

I remember looking at this circa 2016 - 2021 and letting go at that time,  crony had just been released and systemd was still relatively new at that time.

systemd commands

	* sudo systemctl status systemd-timesyncd
		* The default configuration is shown in</description>
    </item>
    <item rdf:about="https://wiki.kptree.net/docker_notes:vm-container?rev=1766458124&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-12-23T02:48:44+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Docker Host</title>
        <link>https://wiki.kptree.net/docker_notes:vm-container?rev=1766458124&amp;do=diff</link>
        <description>linux docker vm proxmox server vnc kvm libvirt selfhosted

Docker Host

KVM versus Proxmox

I originally started using Linux KVM based VM, with QEMU and Libvirt on Ubuntu bare metal, circa 2014, this before was I was aware that Proxmox existed.  Around 2020 I moved to Debian as my preferred bare metal distribution for server and desktop, I stopped using Windows as my main home desktop around this time. When I started playing around with Docker to create my own container images I preferred use of…</description>
    </item>
    <item rdf:about="https://wiki.kptree.net/docker_notes:docker-dhcp?rev=1775866774&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-11T00:19:34+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Docker - DHCP Kea Server</title>
        <link>https://wiki.kptree.net/docker_notes:docker-dhcp?rev=1775866774&amp;do=diff</link>
        <description>linux docker kea dhcp

Docker - DHCP Kea Server

Since mid 2023 I have been running a Docker ISC Kea Image using base Docker Alpine Linux images, with S6 init system. (ISC Kea is a modern replacement for their DHCP.)  The main DHCP server runs on my main server and I have an automatic fall over back up on my separate Linux router.  I basically followed the Kea template</description>
    </item>
    <item rdf:about="https://wiki.kptree.net/docker_notes:docker-nextcloud?rev=1787484737&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-08-23T11:32:17+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Nextcloud Container</title>
        <link>https://wiki.kptree.net/docker_notes:docker-nextcloud?rev=1787484737&amp;do=diff</link>
        <description>linux docker nextcloud mysql mariadb

Nextcloud Container

Nextcloud publishes their own Docker container of Nextcloud. The Nextcloud image on Docker hub is maintained by the Nextcloud community, and is not officially supported by Nextcloud!   Linuxserver.io, as well as some others also have Nextcloud containers on Docker Hub.</description>
    </item>
    <item rdf:about="https://wiki.kptree.net/docker_notes:fileshare?rev=1736047559&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-01-05T03:25:59+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>File Sharing</title>
        <link>https://wiki.kptree.net/docker_notes:fileshare?rev=1736047559&amp;do=diff</link>
        <description>linux docker file_sharing share sharing syncthing privatebin

File Sharing

All the applications have pro and cons.  This is listed at the beginning of each header.

There have been considered 3 different levels of access as described by the applications used:

	* Nextcloud - a full privately hosted publicly accessible file shareing application, with many additional features</description>
    </item>
    <item rdf:about="https://wiki.kptree.net/docker_notes:diun-ntfy?rev=1733484956&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-12-06T11:35:56+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Docker - diun &amp; ntfy</title>
        <link>https://wiki.kptree.net/docker_notes:diun-ntfy?rev=1733484956&amp;do=diff</link>
        <description>linux docker diun ntfy

Docker - diun &amp; ntfy

ntfy is a notification application and server frame work.  It has an iOS client and can also use standard web page and Andiod app.  I originally considered gotify however there is not iOS application for this notification system, which basically makes it of less value for me.</description>
    </item>
</rdf:RDF>
