<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.visrc.com/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.visrc.com/feed.php">
        <title>TD Wiki devops:docker</title>
        <description></description>
        <link>https://wiki.visrc.com/</link>
        <image rdf:resource="https://wiki.visrc.com/lib/tpl/monobook/images/favicon.ico" />
       <dc:date>2026-05-07T17:30:03+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=devops:docker:0_docker_quick&amp;rev=1740059711&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=devops:docker:docker_dev_workflow&amp;rev=1740059710&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=devops:docker:docker_troubleshooting&amp;rev=1740059710&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=devops:docker:docker_tutorial&amp;rev=1740059711&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.visrc.com/doku.php?id=devops:docker:web_hosting&amp;rev=1740059711&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.visrc.com/lib/tpl/monobook/images/favicon.ico">
        <title>TD Wiki</title>
        <link>https://wiki.visrc.com/</link>
        <url>https://wiki.visrc.com/lib/tpl/monobook/images/favicon.ico</url>
    </image>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=devops:docker:0_docker_quick&amp;rev=1740059711&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:55:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>devops:docker:0_docker_quick</title>
        <link>https://wiki.visrc.com/doku.php?id=devops:docker:0_docker_quick&amp;rev=1740059711&amp;do=diff</link>
        <description>Docker quick

1. Volumes

	*  show &lt;https://stackoverflow.com/questions/30133664/how-do-you-list-volumes-in-docker-containers&gt;

2. Run container

2.1 Host network

Create and start the container as a detached process. 
The --rm option means to remove the container once it exits/stops. 
The -d flag means to start the container detached (in the background).
Host network</description>
    </item>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=devops:docker:docker_dev_workflow&amp;rev=1740059710&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:55:10+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>devops:docker:docker_dev_workflow</title>
        <link>https://wiki.visrc.com/doku.php?id=devops:docker:docker_dev_workflow&amp;rev=1740059710&amp;do=diff</link>
        <description>Docker Development Workflow

Taking project vfoss as example, we describe workflow when working with the project.

Summary of steps:

	*  Create local image
		*  Download and Install additional software to base image: Dockerfile.s2i.base
			*  Create s2i workspace for: Dockerfile, src folder in the image (/opt/app-root).</description>
    </item>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=devops:docker:docker_troubleshooting&amp;rev=1740059710&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:55:10+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>devops:docker:docker_troubleshooting</title>
        <link>https://wiki.visrc.com/doku.php?id=devops:docker:docker_troubleshooting&amp;rev=1740059710&amp;do=diff</link>
        <description>Docker k8s troubleshooting

1. Failed to allocate directory watch: Too many open files
# sysctl fs.inotify
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 128
fs.inotify.max_user_watches = 65536
Try increasing the instance limit, eg. # sysctl fs.inotify.max</description>
    </item>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=devops:docker:docker_tutorial&amp;rev=1740059711&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:55:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>devops:docker:docker_tutorial</title>
        <link>https://wiki.visrc.com/doku.php?id=devops:docker:docker_tutorial&amp;rev=1740059711&amp;do=diff</link>
        <description>Deveops: Docker Tutorial

	*  &lt;https://prakhar.me/docker-curriculum/#busybox&gt;
	*  &lt;http://jamesdacosta.com/getting-started-with-django-docker-rancher-part-1/&gt;
	*  &lt;http://michal.karzynski.pl/blog/2015/04/19/packaging-django-applications-as-docker-container-images/&gt;
	*  Docker django: &lt;https://realpython.com/blog/python/django-development-with-docker-compose-and-machine/&gt;

Basic

1. Install Docker

1.1 Fedora
$ sudo dnf install docker
To start the Docker service use:
$ sudo systemctl start docker…</description>
    </item>
    <item rdf:about="https://wiki.visrc.com/doku.php?id=devops:docker:web_hosting&amp;rev=1740059711&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-20T14:55:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>devops:docker:web_hosting</title>
        <link>https://wiki.visrc.com/doku.php?id=devops:docker:web_hosting&amp;rev=1740059711&amp;do=diff</link>
        <description>Hosting Multi Webs with Docker



Tags: vfoss docker hosting admin server

	* ngix: &lt;https://blog.docker.com/2015/04/tips-for-deploying-nginx-official-image-with-docker/&gt;
	* &lt;https://www.digitalocean.com/community/tutorials/understanding-the-nginx-configuration-file-structure-and-configuration-contexts&gt;
	* &lt;https://www.digitalocean.com/community/questions/how-to-bind-multiple-domains-ports-80-and-443-to-docker-contained-applications&gt;
	* Production nginx: &lt;http://jasonwilder.com/blog/2014/03/25/a…</description>
    </item>
</rdf:RDF>
