<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://techdoku.nogafam.es/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://techdoku.nogafam.es/feed.php">
        <title>NoBIGTech Wiki Técnico - docu:csheet:sysadm:venv:docker</title>
        <description></description>
        <link>https://techdoku.nogafam.es/</link>
        <image rdf:resource="https://techdoku.nogafam.es/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-04-28T07:40:21+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:venv:docker:inspect_sha256&amp;rev=1589181771&amp;do=diff"/>
                <rdf:li rdf:resource="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:venv:docker:netns_exec&amp;rev=1602602830&amp;do=diff"/>
                <rdf:li rdf:resource="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:venv:docker:run_kali&amp;rev=1584833086&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://techdoku.nogafam.es/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>NoBIGTech Wiki Técnico</title>
        <link>https://techdoku.nogafam.es/</link>
        <url>https://techdoku.nogafam.es/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:venv:docker:inspect_sha256&amp;rev=1589181771&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-05-11T07:22:51+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>inspect_sha256</title>
        <link>https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:venv:docker:inspect_sha256&amp;rev=1589181771&amp;do=diff</link>
        <description>Inspect the docker image sha256 sum from the repo to compare



Compare sha256 sums on local images versus images 
from the docker hub or an external repository


docker inspect --format=&#039;{{index .RepoDigests 0}}&#039; IMAGE_NAME</description>
    </item>
    <item rdf:about="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:venv:docker:netns_exec&amp;rev=1602602830&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-13T15:27:10+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>netns_exec</title>
        <link>https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:venv:docker:netns_exec&amp;rev=1602602830&amp;do=diff</link>
        <description>Execute a command on the docker container network namespace



Tired of having to install ping/curl/telnet/netcat to test connectivity on docker containers to other hosts? This is probably the most useful thing i&#039;ve learn on container technologies


container_name=your-example-container

# Get the PID of docker container main command
docker inspect -f &#039;{{.State.Pid}}&#039; $container_name

# Execute whatever command you want (you must have it installed on host)
#  example:
nsenter -t PID -n host tech…</description>
    </item>
    <item rdf:about="https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:venv:docker:run_kali&amp;rev=1584833086&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-03-21T23:24:46+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>run_kali</title>
        <link>https://techdoku.nogafam.es/doku.php?id=docu:csheet:sysadm:venv:docker:run_kali&amp;rev=1584833086&amp;do=diff</link>
        <description>Run a process-isolated Kali Linux Rolling



Ever wondered you could run a docker container with Kali Linux in it, and still access your physical network devices, and be able to capture packets, and so on??


#!/bin/bash
xhost +local: &gt;/dev/null 2&gt;&amp;1
docker run -it --rm \
	--mount type=bind,source=`pwd`/root,destination=/root \
	--mount type=bind,source=`pwd`/etc,destination=/etc \
	--mount type=bind,source=`pwd`/usr,destination=/usr \
	--mount type=bind,source=`pwd`/var,destination=/var \
	--pr…</description>
    </item>
</rdf:RDF>
