<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://www.mtacs.de/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://www.mtacs.de/feed.php">
        <title>msdoc docker</title>
        <description></description>
        <link>https://www.mtacs.de/</link>
        <image rdf:resource="https://www.mtacs.de/lib/tpl/dokuwiki/images/favicon.ico" />
       <dc:date>2026-04-12T08:58:28+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://www.mtacs.de/doku.php?id=docker:dlna&amp;rev=1673465362&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.mtacs.de/doku.php?id=docker:install&amp;rev=1678437222&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.mtacs.de/doku.php?id=docker:nfs&amp;rev=1673465362&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.mtacs.de/doku.php?id=docker:usage&amp;rev=1673465362&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://www.mtacs.de/lib/tpl/dokuwiki/images/favicon.ico">
        <title>msdoc</title>
        <link>https://www.mtacs.de/</link>
        <url>https://www.mtacs.de/lib/tpl/dokuwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="https://www.mtacs.de/doku.php?id=docker:dlna&amp;rev=1673465362&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-01-11T19:29:22+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>docker:dlna</title>
        <link>https://www.mtacs.de/doku.php?id=docker:dlna&amp;rev=1673465362&amp;do=diff</link>
        <description>miniDLNA/ReadyMedia Server in Docker


vi run.sh
---------
#!/usr/bin/env sh
# Fail on *any* error
set -e

# Remove stale PID
rm -rf /var/run/minidlna/minidlna.pid

# Setup config
echo &quot;port=8200&quot; &gt; /tmp/minidlna.conf
echo &quot;friendly_name=docker&quot; &gt;&gt; /tmp/minidlna.conf
echo &quot;media_dir=/media&quot; &gt;&gt; /tmp/minidlna.conf
echo &quot;Starting minidlna daemon...&quot;
minidlnad -d -f /tmp/minidlna.conf</description>
    </item>
    <item rdf:about="https://www.mtacs.de/doku.php?id=docker:install&amp;rev=1678437222&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-10T08:33:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>docker:install</title>
        <link>https://www.mtacs.de/doku.php?id=docker:install&amp;rev=1678437222&amp;do=diff</link>
        <description>Docker installieren

Installation unter Debian 11 (bullseye)

Nötige Packete


apt install -y apt-transport-https ca-certificates curl gnupg2 software-properties-common



curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/trusted.gpg.d/docker-archive-keyring.gpg
echo &quot;deb https://download.docker.com/linux/debian $(lsb_release -cs) stable&quot; | tee /etc/apt/sources.list.d/docker.list
apt update
apt install -y docker-ce docker-ce-cli containerd.io

usermod -aG docker…</description>
    </item>
    <item rdf:about="https://www.mtacs.de/doku.php?id=docker:nfs&amp;rev=1673465362&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-01-11T19:29:22+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>docker:nfs</title>
        <link>https://www.mtacs.de/doku.php?id=docker:nfs&amp;rev=1673465362&amp;do=diff</link>
        <description>docker run -itd --privileged --restart unless-stopped -e SHARED_DIRECTORY=/data -v /home/user/date:/data -p 2049:2049 itsthenetwork/nfs-server-alpine



apt install nfs-client



mount -t nfs -v -o vers=4,loud &lt;Server-IP&gt;:/ /mnt</description>
    </item>
    <item rdf:about="https://www.mtacs.de/doku.php?id=docker:usage&amp;rev=1673465362&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-01-11T19:29:22+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>docker:usage</title>
        <link>https://www.mtacs.de/doku.php?id=docker:usage&amp;rev=1673465362&amp;do=diff</link>
        <description>Docker

Eigenes Image bauen

Docker-File anlegen


vi Dockerfile

FROM python:rc-slim-buster
RUN apt-get update -y
RUN apt-get install -y apt-utils
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y libffi-dev gcc openssh-client
RUN pip install pip --upgrade
RUN pip install ansible
WORKDIR /root/work</description>
    </item>
</rdf:RDF>
