<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://all.docs.genesys.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jaba</id>
	<title>Genesys Documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://all.docs.genesys.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jaba"/>
	<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/Special:Contributions/Jaba"/>
	<updated>2026-05-17T02:02:41Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Docker/Current/Troubleshooting/Troubleshooting&amp;diff=64605</id>
		<title>Docker/Current/Troubleshooting/Troubleshooting</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Docker/Current/Troubleshooting/Troubleshooting&amp;diff=64605"/>
		<updated>2020-08-25T05:32:52Z</updated>

		<summary type="html">&lt;p&gt;Jaba: Published&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ArticleUnstructured&lt;br /&gt;
|DisplayName=Troubleshooting&lt;br /&gt;
|Platform=GenesysEngage-cloud, PureConnect, GenesysCloud&lt;br /&gt;
|Context=How to troubleshoot docker containers&lt;br /&gt;
|Standalone=No&lt;br /&gt;
}}&lt;br /&gt;
==Troubleshooting Docker Containers==&lt;br /&gt;
{{{!}} class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} style=&amp;quot;width: 799.2px;&amp;quot; data-mce-style=&amp;quot;width: 799.2px;&amp;quot;{{!}}'''Note:''' At the end of this topic, you will be provided with a terminal to an environment that has all the prerequisites (such as Docker and Kubernetes) up and running. You can practice your commands in this tutorial without any need to setup your own environment.&amp;lt;br /&amp;gt;&lt;br /&gt;
{{!}}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Get environment settings. &lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker run --rm ubuntu env&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Kill running containers.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker kill $(docker ps -q)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete all containers (force!! running or stopped containers).&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rm -f $(docker ps -qa)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete old containers.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker ps -a | grep 'weeks ago' | awk '{print $1}' | xargs docker rm&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete stopped containers.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rm -v $(docker ps -a -q -f status=exited)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete containers after stopping.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker stop $(docker ps -aq) &amp;amp;&amp;amp; docker rm -v $(docker ps -aq)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete dangling images.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rmi $(docker images -q -f dangling=true)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete all images.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rmi $(docker images -q)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete dangling volumes.&lt;br /&gt;
As of Docker 1.9.0:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker volume rm $(docker volume ls -q -f dangling=true)&amp;lt;/source&amp;gt;&lt;br /&gt;
In 1.9.0, the filter dangling=false does not work. It is ignored and lists all volumes.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Show image dependencies.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker images -viz | dot -Tpng -o docker.png&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Slim down Docker containers.&amp;lt;br&amp;gt;&lt;br /&gt;
'''Cleaning APT in a RUN layer''':&lt;br /&gt;
This must be done in the same layer as that of the other APT commands. If not, the previous layers will still contain the original information and your images will still be large.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;RUN {apt commands} \&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt; &amp;amp;&amp;amp; apt-get clean \&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt; &amp;amp;&amp;amp; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*&amp;lt;/source&amp;gt;&lt;br /&gt;
'''Flatten an image''':&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;ID=$(docker run -d image-name /bin/bash)&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker export $ID | docker import – flat-image-name&amp;lt;/source&amp;gt;&lt;br /&gt;
'''For backup''':&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;ID=$(docker run -d image-name /bin/bash)&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;(docker export $ID | gzip -c &amp;gt; image.tgz)&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;gzip -dc image.tgz | docker import - flat-image-name&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Information on Running Docker Containers ==&lt;br /&gt;
* &amp;lt;code&amp;gt;docker ps&amp;lt;/code&amp;gt; displays running containers.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker logs&amp;lt;/code&amp;gt; gets logs from the container. (You can use a custom log driver, but logs are available only for json-file and journald in 1.10).&lt;br /&gt;
* &amp;lt;code&amp;gt;docker inspect&amp;lt;/code&amp;gt; inspects all the information of a container (including the IP address).&lt;br /&gt;
* &amp;lt;code&amp;gt;docker events&amp;lt;/code&amp;gt; gets events from the container.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker port&amp;lt;/code&amp;gt; displays the public facing port of the container.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker top&amp;lt;/code&amp;gt; displays the running processes in container.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker stats&amp;lt;/code&amp;gt; displays the containers' resource usage statistics.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker diff&amp;lt;/code&amp;gt; displays the changed files in the container's FS.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker ps -a&amp;lt;/code&amp;gt; displays running and stopped containers.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker stats --all&amp;lt;/code&amp;gt; displays a running list of containers.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker update&amp;lt;/code&amp;gt; updates a container's resource limits.&lt;br /&gt;
&lt;br /&gt;
To check the CPU, memory, and network I/O usage of a single container:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker stats &amp;lt;container&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
For all containers listed by ID:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker stats $(docker ps -q)&amp;lt;/source&amp;gt;&lt;br /&gt;
For all containers listed by name:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker stats $(docker ps --format '{{.Names}}')&amp;lt;/source&amp;gt;&lt;br /&gt;
For all containers listed by image:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker ps -a -f ancestor=ubuntu&amp;lt;/source&amp;gt;&lt;br /&gt;
To remove all untagged images:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rmi $(docker images | grep “^” | awk '{split($0,a,&amp;quot; &amp;quot;); print a[3]}')&amp;lt;/source&amp;gt;&lt;br /&gt;
To remove container by a regular expression:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker ps -a | grep wildfly | awk '{print $1}' | xargs docker rm -f&amp;lt;/source&amp;gt;&lt;br /&gt;
To remove all exited containers:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rm -f $(docker ps -a | grep Exit | awk '{ print $1 }')&amp;lt;/source&amp;gt;&lt;br /&gt;
You can practice the above-mentioned commands using the following widget:&lt;br /&gt;
{{#widget:Katacoda|divid=myScenario|scenario=docker/deploying-first-container|height=800px}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Docker&amp;diff=64604</id>
		<title>Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Docker&amp;diff=64604"/>
		<updated>2020-08-25T05:29:56Z</updated>

		<summary type="html">&lt;p&gt;Jaba: Published&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=Multicloud&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=GenesysEngage-cloud, PureConnect, GenesysCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=*[https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide]&lt;br /&gt;
*[https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
*[https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
*[https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
*[https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
*[https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=GenesysEngage-cloud, PureConnect, GenesysCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=*[https://all.docs.genesys.com/Docker/Current/Troubleshooting/Running_Containers Running Containers]&lt;br /&gt;
*[https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=GenesysEngage-cloud, PureConnect, GenesysCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=*[https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding_Volumes Understanding Volumes]&lt;br /&gt;
*[https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing_Volumes Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
|Platform=PureConnect, GenesysCloud, GenesysEngage-cloud&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Widget:Katacoda&amp;diff=63863</id>
		<title>Widget:Katacoda</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Widget:Katacoda&amp;diff=63863"/>
		<updated>2020-08-13T07:28:43Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This widget allows you to add an embedded Katacoda course into your Wiki page. Katacoda is an opensource learning platform, which provides scripts to embed the terminal in our own pages. &lt;br /&gt;
&lt;br /&gt;
== Using this widget ==&lt;br /&gt;
To use this widget, include the course name into the #widget parser syntax as the data-katacoda-id parameter.&lt;br /&gt;
&lt;br /&gt;
Here is a sample #widget syntax:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{#widget:Katacoda|divid=myScenario|scenario=docker/deploying-first-container}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;katacoda-caption&amp;gt;&amp;lt;script src=&amp;quot;//katacoda.com/embed.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;myScenario&amp;quot; data-katacoda-id=&amp;quot;docker/deploying-first-container&amp;quot; data-katacoda-color=&amp;quot;004d7f&amp;quot; style=&amp;quot;height: 600px; padding-top: 0px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Available Parameters:&lt;br /&gt;
* scenario (mandatory): Katacoda scenario ID (including username and scenario name)&lt;br /&gt;
* divid (optional): Unique ID of div containing your Katacoda scenario; defaults to the value of the scenario parameter&lt;br /&gt;
* height (optional): Height of div containing your Katacoda scenario; defaults to 600px&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
* Caption (optional): Caption preceding Katacoda div; you can define the style separately&lt;br /&gt;
* Color (optional): Hex value passed to Katacoda; defaults to 004d7f&lt;br /&gt;
* Padding (optional): Top padding for the div containing your Katacoda scenario; defaults to 0px&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;Note:&amp;lt;/B&amp;gt; To use this widget on your site, install [https://www.mediawiki.org/wiki/Extension:Widgets MediaWiki Widgets extension] and copy the [{{fullurl:{{FULLPAGENAME}}|action=edit}} full source code] of this page to your wiki, as an article called '''{{FULLPAGENAME}}'''.&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&amp;lt;p class=&amp;quot;katacoda-caption&amp;quot;&amp;gt;&amp;lt;!--{$caption|escape:'html'}--&amp;gt;&amp;lt;script src=&amp;quot;//katacoda.com/embed.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div id=&amp;quot;&amp;lt;!--{$divid|escape:'html'|default:$scenario}--&amp;gt;&amp;quot; data-katacoda-id=&amp;quot;&amp;lt;!--{$scenario|escape:'html'}--&amp;gt;&amp;quot; data-katacoda-color=&amp;quot;&amp;lt;!--{$color|escape:'html'|default:'004d7f'}--&amp;gt;&amp;quot; style=&amp;quot;height: &amp;lt;!--{$height|escape:'html'|default:'600px'}--&amp;gt;; padding-top: &amp;lt;!--{$padding|escape:'html'|default:'0px'}--&amp;gt;;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Widget:Katacoda&amp;diff=63862</id>
		<title>Widget:Katacoda</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Widget:Katacoda&amp;diff=63862"/>
		<updated>2020-08-13T07:26:59Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This widget allows you to add an embedded Katacoda course into your Wiki page. Katacoda is an opensource learning platform, which provides scripts to embed the terminal in our own pages. &lt;br /&gt;
&lt;br /&gt;
== Using this widget ==&lt;br /&gt;
To use this widget, include the course name into the #widget parser syntax as the data-katacoda-id parameter.&lt;br /&gt;
&lt;br /&gt;
Here is a sample #widget syntax:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{#widget:Katacoda|divid=myScenario|scenario=docker/deploying-first-container}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;katacoda-caption&amp;gt;&amp;lt;script src=&amp;quot;//katacoda.com/embed.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;myScenario&amp;quot; data-katacoda-id=&amp;quot;docker/deploying-first-container&amp;quot; data-katacoda-color=&amp;quot;004d7f&amp;quot; style=&amp;quot;height: 600px; padding-top: 0px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Available Parameters:&lt;br /&gt;
* scenario (mandatory): Katacoda scenario ID (including username and scenario name)&lt;br /&gt;
* divid (optional): Unique ID of div containing your Katacoda scenario; defaults to value of the scenario parameter&lt;br /&gt;
* height (optional): Height of div containing your Katacoda scenario; defaults to 600px&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
* Caption (optional): Caption preceding Katacoda div; you can define the style separately&lt;br /&gt;
* Color (optional): Hex value passed to Katacoda; defaults to 004d7f&lt;br /&gt;
* Padding (optional): Top padding for the div containing your Katacoda scenario; defaults to 0px&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;Note:&amp;lt;/B&amp;gt; To use this widget on your site, install [https://www.mediawiki.org/wiki/Extension:Widgets MediaWiki Widgets extension] and copy the [{{fullurl:{{FULLPAGENAME}}|action=edit}} full source code] of this page to your wiki, as an article called '''{{FULLPAGENAME}}'''.&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&amp;lt;p class=&amp;quot;katacoda-caption&amp;quot;&amp;gt;&amp;lt;!--{$caption|escape:'html'}--&amp;gt;&amp;lt;script src=&amp;quot;//katacoda.com/embed.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div id=&amp;quot;&amp;lt;!--{$divid|escape:'html'|default:$scenario}--&amp;gt;&amp;quot; data-katacoda-id=&amp;quot;&amp;lt;!--{$scenario|escape:'html'}--&amp;gt;&amp;quot; data-katacoda-color=&amp;quot;&amp;lt;!--{$color|escape:'html'|default:'004d7f'}--&amp;gt;&amp;quot; style=&amp;quot;height: &amp;lt;!--{$height|escape:'html'|default:'600px'}--&amp;gt;; padding-top: &amp;lt;!--{$padding|escape:'html'|default:'0px'}--&amp;gt;;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Docker/Current/Troubleshooting/Troubleshooting&amp;diff=18690</id>
		<title>Docker/Current/Troubleshooting/Troubleshooting</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Docker/Current/Troubleshooting/Troubleshooting&amp;diff=18690"/>
		<updated>2019-11-02T18:35:06Z</updated>

		<summary type="html">&lt;p&gt;Jaba: Published&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ArticleUnstructured&lt;br /&gt;
|DisplayName=Troubleshooting&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Context=Information about how to troubleshoot docker containers.&lt;br /&gt;
|Standalone=No&lt;br /&gt;
}}&lt;br /&gt;
==Troubleshooting Docker Containers==&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Get the IP address. To do this, run the following command.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt; docker inspect $(dl) | grep -wm1 IPAddress | cut -d '&amp;quot;' -f 4&amp;lt;/source&amp;gt;Or, install jQuery and run the following command.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker inspect $(dl) | jq -r '.[0].NetworkSettings.IPAddress'&amp;lt;/source&amp;gt;Or install [https://docs.docker.com/engine/reference/commandline/inspect go template] and run the following command. &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker inspect -f '{{ .NetworkSettings.IPAddress }}' &amp;lt;container_name&amp;gt;&amp;lt;/source&amp;gt; To pass a build argument when building an image from Dockerfile:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;DOCKER_HOST_IP=`ifconfig | grep -E &amp;quot;([0-9]{1,3}\.){3}[0-9]{1,3}&amp;quot; | grep -v 127.0.0.1 | awk '{ print $2 }' | cut -f2 -d: | head -n1`&lt;br /&gt;
echo DOCKER_HOST_IP = $DOCKER_HOST_IP&lt;br /&gt;
docker build \&lt;br /&gt;
  --build-arg ARTIFACTORY_ADDRESS=$DOCKER_HOST_IP &lt;br /&gt;
  -t sometag \&lt;br /&gt;
  some-directory/&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Get port mapping&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker inspect -f '{{range $p, $conf := .NetworkSettings.Ports}} {{$p}} -&amp;gt; {{(index $conf 0).HostPort}} {{end}}' &amp;lt;containername&amp;gt;&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Find containers by regular expression&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;for i in $(docker ps -a | grep &amp;quot;REGEXP_PATTERN&amp;quot; | cut -f1 -d&amp;quot; &amp;quot;); do echo $i; done&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Get environment settings. &lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker run --rm ubuntu env&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Kill running containers.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker kill $(docker ps -q)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete all containers (force!! running or stopped containers).&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rm -f $(docker ps -qa)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete old containers.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker ps -a | grep 'weeks ago' | awk '{print $1}' | xargs docker rm&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete stopped containers.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rm -v $(docker ps -a -q -f status=exited)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete containers after stopping.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker stop $(docker ps -aq) &amp;amp;&amp;amp; docker rm -v $(docker ps -aq)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete dangling images.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rmi $(docker images -q -f dangling=true)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete all images.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rmi $(docker images -q)&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Delete dangling volumes.&lt;br /&gt;
As of Docker 1.9.0:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker volume rm $(docker volume ls -q -f dangling=true)&amp;lt;/source&amp;gt;&lt;br /&gt;
In 1.9.0, the filter dangling=false does not work. It is ignored and lists all volumes.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Show image dependencies.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker images -viz | dot -Tpng -o docker.png&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Slimming down Docker containers.&lt;br /&gt;
'''Cleaning APT in a RUN layer''':&lt;br /&gt;
This must be done in the same layer as that of the other APT commands. If not, the previous layers will still contain the original information and your images will still be large.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;RUN {apt commands} \&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt; &amp;amp;&amp;amp; apt-get clean \&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt; &amp;amp;&amp;amp; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*&amp;lt;/source&amp;gt;&lt;br /&gt;
'''Flatten an image''':&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;ID=$(docker run -d image-name /bin/bash)&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker export $ID | docker import – flat-image-name&amp;lt;/source&amp;gt;&lt;br /&gt;
'''For backup''':&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;ID=$(docker run -d image-name /bin/bash)&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;(docker export $ID | gzip -c &amp;gt; image.tgz)&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;gzip -dc image.tgz | docker import - flat-image-name&amp;lt;/source&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Information on Running Docker Containers ==&lt;br /&gt;
* &amp;lt;code&amp;gt;docker ps&amp;lt;/code&amp;gt; displays running containers.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker logs&amp;lt;/code&amp;gt; gets logs from the container. (You can use a custom log driver, but logs are available only for json-file and journald in 1.10).&lt;br /&gt;
* &amp;lt;code&amp;gt;docker inspect&amp;lt;/code&amp;gt; inspects all the information of a container (including the IP address).&lt;br /&gt;
* &amp;lt;code&amp;gt;docker events&amp;lt;/code&amp;gt; gets events from the container.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker port&amp;lt;/code&amp;gt; displays the public facing port of the container.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker top&amp;lt;/code&amp;gt; displays the running processes in container.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker stats&amp;lt;/code&amp;gt; displays the containers' resource usage statistics.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker diff&amp;lt;/code&amp;gt; displays the changed files in the container's FS.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker ps -a&amp;lt;/code&amp;gt; displays running and stopped containers.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker stats --all&amp;lt;/code&amp;gt; displays a running list of containers.&lt;br /&gt;
* &amp;lt;code&amp;gt;docker update&amp;lt;/code&amp;gt; updates a container's resource limits.&lt;br /&gt;
&lt;br /&gt;
To check the CPU, memory, and network I/O usage of a single container:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker stats &amp;lt;container&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
For all containers listed by ID:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker stats $(docker ps -q)&amp;lt;/source&amp;gt;&lt;br /&gt;
For all containers listed by name:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker stats $(docker ps --format '{{.Names}}')&amp;lt;/source&amp;gt;&lt;br /&gt;
For all containers listed by image:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker ps -a -f ancestor=ubuntu&amp;lt;/source&amp;gt;&lt;br /&gt;
To remove all untagged images:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rmi $(docker images | grep “^” | awk '{split($0,a,&amp;quot; &amp;quot;); print a[3]}')&amp;lt;/source&amp;gt;&lt;br /&gt;
To remove container by a regular expression:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker ps -a | grep wildfly | awk '{print $1}' | xargs docker rm -f&amp;lt;/source&amp;gt;&lt;br /&gt;
To remove all exited containers:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;docker rm -f $(docker ps -a | grep Exit | awk '{ print $1 }')&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Docker/Current&amp;diff=18680</id>
		<title>Docker/Current</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Docker/Current&amp;diff=18680"/>
		<updated>2019-11-02T18:34:57Z</updated>

		<summary type="html">&lt;p&gt;Jaba: Published&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsVersion&lt;br /&gt;
|product=Draft:Docker&lt;br /&gt;
|version=Current&lt;br /&gt;
|status=unreleased&lt;br /&gt;
|manualslist=Deployment&lt;br /&gt;
|comingsoon=No&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15911</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15911"/>
		<updated>2019-09-30T08:54:37Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Title=Getting Started&lt;br /&gt;
|Description=&amp;lt;br /&amp;gt;&lt;br /&gt;
|Links=* {{Link-SomewhereInThisVersion|topic=Dockerhub|standalone|display text=Docker Hub}}&lt;br /&gt;
* {{Link-SomewhereInThisVersion|topic=Baseimages|standalone|display text=Base Images}}&lt;br /&gt;
* {{Link-SomewhereInThisVersion|topic=Dockercompose|standalone|display text=Docker Compose}}&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15909</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15909"/>
		<updated>2019-09-30T08:50:51Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Title=Getting Started&lt;br /&gt;
|Description=&amp;lt;br /&amp;gt;&lt;br /&gt;
|Links=* {{Link-SomewhereInThisVersion|topic=Dockerhub|standalone|display text=Docker Hub}}&lt;br /&gt;
* {{Link-SomewhereInThisVersion|topic=Baseimages|standalone|display text=Base Images}}&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15908</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15908"/>
		<updated>2019-09-30T07:43:56Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Title=Getting Started&lt;br /&gt;
|Description=&amp;lt;br /&amp;gt;&lt;br /&gt;
|Links=* [[https://all.docs.genesys.com/Draft:Docker/Dockerhub Docker Hub]] &lt;br /&gt;
* [[https://all.docs.genesys.com/Draft:Docker/Baseimages|Base Images]]&lt;br /&gt;
* Docker Compose&lt;br /&gt;
* {{Link-SomewhereInThisVersion|topic=Dockerhub|standalone|display text=Docker Hub}}&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15907</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15907"/>
		<updated>2019-09-30T07:42:30Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Title=Getting Started&lt;br /&gt;
|Description=&amp;lt;br /&amp;gt;&lt;br /&gt;
|Links=* [[https://all.docs.genesys.com/Draft:Docker/Dockerhub|Docker Hub]] &lt;br /&gt;
* [[https://all.docs.genesys.com/Draft:Docker/Baseimages|Base Images]]&lt;br /&gt;
* Docker Compose&lt;br /&gt;
* {{Link-SomewhereInThisVersion|topic=Dockerhub|standalone}}&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15906</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15906"/>
		<updated>2019-09-30T07:36:48Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Title=Getting Started&lt;br /&gt;
|Description=&amp;lt;br /&amp;gt;&lt;br /&gt;
|Links=* [[https://all.docs.genesys.com/Draft:Docker/Dockerhub|Docker Hub]] &lt;br /&gt;
* [[https://all.docs.genesys.com/Draft:Docker/Baseimages|Base Images]]&lt;br /&gt;
* Docker Compose&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15905</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15905"/>
		<updated>2019-09-30T07:32:58Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Title=Getting Started&lt;br /&gt;
|Description=&amp;lt;br /&amp;gt;&lt;br /&gt;
|Links=* [[https://all.docs.genesys.com/Draft:Docker/Dockerhub|Docker Hub]] &lt;br /&gt;
* [[https://all.docs.genesys.com/Draft:Docker/Baseimages|Base Images]]&lt;br /&gt;
* Docker Compose&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15901</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15901"/>
		<updated>2019-09-30T07:11:14Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Title=Getting Started&lt;br /&gt;
|Description=&amp;lt;br /&amp;gt;&lt;br /&gt;
|Links=* [[https://all.docs.genesys.com/Draft:Docker/Dockerhub|Docker Hub]] &lt;br /&gt;
* Base Images&lt;br /&gt;
* Docker Compose&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15900</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15900"/>
		<updated>2019-09-30T07:09:31Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Title=Getting Started&lt;br /&gt;
|Description=&amp;lt;br /&amp;gt;&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Dockerhub Docker Hub] &lt;br /&gt;
* Base Images&lt;br /&gt;
* Docker Compose&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15895</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15895"/>
		<updated>2019-09-30T06:42:00Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Title=Getting Started&lt;br /&gt;
|Description=&amp;lt;br /&amp;gt;&lt;br /&gt;
|Links=Docker Hub &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Base Images&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Docker Compose&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15894</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=15894"/>
		<updated>2019-09-30T06:38:06Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Title=Getting Started&lt;br /&gt;
|Links=Docker Hub&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Base Images&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Docker Compose&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Docker&amp;diff=13946</id>
		<title>Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Docker&amp;diff=13946"/>
		<updated>2019-09-09T09:05:55Z</updated>

		<summary type="html">&lt;p&gt;Jaba: Published&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13945</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13945"/>
		<updated>2019-09-09T09:05:11Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=Yes&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13944</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13944"/>
		<updated>2019-09-09T09:04:17Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockeronAlpineLinux Installing Docker on Alpine Linux]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/StepstopullrepositoriesfromBintray Pulling Repositories from Bintray]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/HAandDRNotes High Availability]&lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/Blue-greenDeploymentModel Blue-Green Deployment Model]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Docker&amp;diff=13941</id>
		<title>Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Docker&amp;diff=13941"/>
		<updated>2019-09-09T07:30:44Z</updated>

		<summary type="html">&lt;p&gt;Jaba: Published&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13940</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13940"/>
		<updated>2019-09-09T07:29:35Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13939</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13939"/>
		<updated>2019-09-09T07:28:46Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Running Running Containers]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/Troubleshooting/Troubleshooting Troubleshooting]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Volumes Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Docker&amp;diff=13938</id>
		<title>Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Docker&amp;diff=13938"/>
		<updated>2019-09-09T07:23:17Z</updated>

		<summary type="html">&lt;p&gt;Jaba: Published&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=&amp;lt;br /&amp;gt;{{#mintydocs_link:version=Current|manual=Troubleshooting}}&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Volumes Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13937</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13937"/>
		<updated>2019-09-09T07:22:17Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=&amp;lt;br /&amp;gt;{{#mintydocs_link:version=Current|manual=Troubleshooting}}&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Volumes Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13936</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13936"/>
		<updated>2019-09-09T07:19:58Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Description=Intro text - placeholder&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=&amp;lt;br /&amp;gt;{{#mintydocs_link:version=Current|manual=Troubleshooting}}&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Docker Volumes&lt;br /&gt;
|Links=* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Understanding Understanding Volumes]&lt;br /&gt;
* [https://all.docs.genesys.com/Draft:Docker/Current/DockerVolumes/Managing Volumes Managing Volumes]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13935</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13935"/>
		<updated>2019-09-09T07:15:45Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Description=Intro text - placeholder&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=&amp;lt;br /&amp;gt;{{#mintydocs_link:version=Current|manual=Troubleshooting}}&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=* [https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide] &lt;br /&gt;
* [https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13934</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13934"/>
		<updated>2019-09-09T07:13:13Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Description=Intro text - placeholder&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=&amp;lt;br /&amp;gt;{{#mintydocs_link:version=Current|manual=Troubleshooting}}&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=[https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://docs.genesys.com/Documentation/System/8.5.x/DDG/InstallationofDockerEngineCommunityEditiononCentOS7 Installing Docker Engine CE on CentOS Linux 7]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13933</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13933"/>
		<updated>2019-09-09T07:11:11Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Description=Intro text - placeholder&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=&amp;lt;br /&amp;gt;{{#mintydocs_link:version=Current|manual=Troubleshooting}}&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Title=Deploying Docker&lt;br /&gt;
|Links=[https://docs.genesys.com/Documentation/System/latest/DDG/Welcome Docker Deployment Guide]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13932</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13932"/>
		<updated>2019-09-09T07:09:05Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Description=Intro text - placeholder&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=&amp;lt;br /&amp;gt;{{#mintydocs_link:version=Current|manual=Troubleshooting}}&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Install and Config&lt;br /&gt;
|Description=DDG text&lt;br /&gt;
|Links=[https://docs.genesys.com/Documentation/System/latest/DDG/Welcom Docker Deployment Guide]&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13931</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13931"/>
		<updated>2019-09-09T07:02:05Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Description=Intro text - placeholder&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links=&amp;lt;br /&amp;gt;{{#mintydocs_link:version=Current|manual=Troubleshooting}}&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13930</id>
		<title>Draft:Docker</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Draft:Docker&amp;diff=13930"/>
		<updated>2019-09-09T07:01:20Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MintyDocsProduct&lt;br /&gt;
|displayname=Genesys Docker Documentation&lt;br /&gt;
|editors=Jaba&lt;br /&gt;
|contentarea=PureEngage&lt;br /&gt;
|landingpage=No&lt;br /&gt;
|definition=Genesys products are built and deployed with modern development principles and technologies such as Microservices, Docker, DevOps, and Automation. This section contains information on Genesys-specific Docker Documentation.&lt;br /&gt;
|Platforms=PureConnect, PureCloud, PureEngage&lt;br /&gt;
|ComingSoon=No&lt;br /&gt;
|MintyDocsProductLandingSections={{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=XYZ Documentation&lt;br /&gt;
|Title=Managing Docker Containers&lt;br /&gt;
|Links={{#mintydocs_link:version=Current|manual=Troubleshooting}}&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}{{MintyDocsProductLandingSections&lt;br /&gt;
|Platform=PureEngage, PureConnect, PureCloud&lt;br /&gt;
|Type=Get Started&lt;br /&gt;
|Description=Intro text - placeholder&lt;br /&gt;
|Columns=No&lt;br /&gt;
}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Widget:Katacoda&amp;diff=8404</id>
		<title>Widget:Katacoda</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Widget:Katacoda&amp;diff=8404"/>
		<updated>2019-04-09T09:30:49Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This widget allows you to add an embedded Katacoda course into your Wiki page. Katacoda is an opensource learning platform, which provides scripts to embed the terminal in our own pages. &lt;br /&gt;
&lt;br /&gt;
== Using this widget ==&lt;br /&gt;
To use this widget, include the course name into the #widget parser syntax as the data-katacoda-id parameter.&lt;br /&gt;
&lt;br /&gt;
Here is a sample #widget syntax:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{#widget:Katacoda|divid=myScenario|scenario=docker/deploying-first-container}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;katacoda-caption&amp;gt;&amp;lt;script src=&amp;quot;//katacoda.com/embed.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;myScenario&amp;quot; data-katacoda-id=&amp;quot;docker/deploying-first-container&amp;quot; data-katacoda-color=&amp;quot;004d7f&amp;quot; style=&amp;quot;height: 600px; padding-top: 0px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Available Parameters:&lt;br /&gt;
* scenario (mandatory): Katacoda scenario ID (including username and scenario name)&lt;br /&gt;
* divid (optional): Unique ID of div containing your Katacoda scenario; defaults to value of the scenario parameter&lt;br /&gt;
* height (optional): Height of div containing your Katacoda scenario; defaults to 600px&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
* Caption (optional): Caption preceding Katacoda div; you can define the style separately&lt;br /&gt;
* Color (optional): Hex value passed to Katacoda; defaults to 004d7f&lt;br /&gt;
* Padding (optional): Top padding for the div containing your Katacoda scenario; defaults to 0px&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;Note:&amp;lt;/B&amp;gt; To use this widget on your site, install [https://www.mediawiki.org/wiki/Extension:Widgets MediaWiki Widgets extension] and the copy [{{fullurl:{{FULLPAGENAME}}|action=edit}} full source code] of this page to your wiki, as an article called '''{{FULLPAGENAME}}'''.&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&amp;lt;p class=&amp;quot;katacoda-caption&amp;quot;&amp;gt;&amp;lt;!--{$caption|escape:'html'}--&amp;gt;&amp;lt;script src=&amp;quot;//katacoda.com/embed.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div id=&amp;quot;&amp;lt;!--{$divid|escape:'html'|default:$scenario}--&amp;gt;&amp;quot; data-katacoda-id=&amp;quot;&amp;lt;!--{$scenario|escape:'html'}--&amp;gt;&amp;quot; data-katacoda-color=&amp;quot;&amp;lt;!--{$color|escape:'html'|default:'004d7f'}--&amp;gt;&amp;quot; style=&amp;quot;height: &amp;lt;!--{$height|escape:'html'|default:'600px'}--&amp;gt;; padding-top: &amp;lt;!--{$padding|escape:'html'|default:'0px'}--&amp;gt;;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Widget:Katacoda&amp;diff=8395</id>
		<title>Widget:Katacoda</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Widget:Katacoda&amp;diff=8395"/>
		<updated>2019-04-08T15:56:46Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This widget allows you to add an embedded Katacoda course into your Wiki page. Katacoda is an opensource learning platform, which provides scripts to embed the terminal in our own pages. &lt;br /&gt;
&lt;br /&gt;
== Using this widget ==&lt;br /&gt;
To use this widget, include the course number into the #widget parser syntax as the data-katacoda-id parameter.&lt;br /&gt;
&lt;br /&gt;
Here is a sample #widget syntax:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{#widget:Katacoda|divid=myScenario|scenario=docker/deploying-first-container}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;katacoda-caption&amp;gt;&amp;lt;script src=&amp;quot;//katacoda.com/embed.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;myScenario&amp;quot; data-katacoda-id=&amp;quot;docker/deploying-first-container&amp;quot; data-katacoda-color=&amp;quot;004d7f&amp;quot; style=&amp;quot;height: 600px; padding-top: 0px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Available Parameters:&lt;br /&gt;
* scenario (mandatory): Katacoda scenario ID (including username and scenario name)&lt;br /&gt;
* divid (optional): Unique ID of div containing your Katacoda scenario; defaults to value of the scenario parameter&lt;br /&gt;
* height (optional): Height of div containing your Katacoda scenario; defaults to 600px&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
* Caption (optional): Caption preceding Katacoda div; you can define the style separately&lt;br /&gt;
* Color (optional): Hex value passed to Katacoda; defaults to 004d7f&lt;br /&gt;
* Padding (optional): Top padding for the div containing your Katacoda scenario; defaults to 0px&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Using the widget ==&lt;br /&gt;
To use this widget on your site, install [https://www.mediawiki.org/wiki/Extension:Widgets MediaWiki Widgets extension] and the copy [{{fullurl:{{FULLPAGENAME}}|action=edit}} full source code] of this page to your wiki, as an article called '''{{FULLPAGENAME}}'''.&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&amp;lt;p class=&amp;quot;katacoda-caption&amp;quot;&amp;gt;&amp;lt;!--{$caption|escape:'html'}--&amp;gt;&amp;lt;script src=&amp;quot;//katacoda.com/embed.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div id=&amp;quot;&amp;lt;!--{$divid|escape:'html'|default:$scenario}--&amp;gt;&amp;quot; data-katacoda-id=&amp;quot;&amp;lt;!--{$scenario|escape:'html'}--&amp;gt;&amp;quot; data-katacoda-color=&amp;quot;&amp;lt;!--{$color|escape:'html'|default:'004d7f'}--&amp;gt;&amp;quot; style=&amp;quot;height: &amp;lt;!--{$height|escape:'html'|default:'600px'}--&amp;gt;; padding-top: &amp;lt;!--{$padding|escape:'html'|default:'0px'}--&amp;gt;;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=Widget:Katacoda&amp;diff=8394</id>
		<title>Widget:Katacoda</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=Widget:Katacoda&amp;diff=8394"/>
		<updated>2019-04-08T15:53:50Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This widget allows you to add an embedded Katacoda course into your Wiki page. Katacoda is an opensource learning platform, which provides scripts to embed the terminal in our own pages. &lt;br /&gt;
&lt;br /&gt;
== Using this widget ==&lt;br /&gt;
To use this widget, include the course number into the #widget parser syntax as the data-katacoda-id parameter.&lt;br /&gt;
&lt;br /&gt;
Here is a sample #widget syntax:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{#widget:Katacoda|divid=myScenario|scenario=docker/deploying-first-container}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;katacoda-caption&amp;gt;&amp;lt;script src=&amp;quot;//katacoda.com/embed.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;myScenario&amp;quot; data-katacoda-id=&amp;quot;docker/deploying-first-container&amp;quot; data-katacoda-color=&amp;quot;004d7f&amp;quot; style=&amp;quot;height: 600px; padding-top: 0px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Available Parameters:&lt;br /&gt;
* scenario (mandatory): Katacoda scenario ID (including username and scenario name)&lt;br /&gt;
* divid (optional): Unique ID for the div containing your Katacoda scenario; defaults to value of the scenario parameter&lt;br /&gt;
* height (optional): Height for the div containing your Katacoda scenario; defaults to 600px&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
* Caption (optional): Caption preceding Katacoda div; you can define the style separately&lt;br /&gt;
* Color (optional): Hex value passed to Katacoda; defaults to 004d7f&lt;br /&gt;
* Padding (optional): Top padding for the div containing your Katacoda scenario; defaults to 0px&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Using the widget ==&lt;br /&gt;
To use this widget on your site, install [https://www.mediawiki.org/wiki/Extension:Widgets MediaWiki Widgets extension] and the copy [{{fullurl:{{FULLPAGENAME}}|action=edit}} full source code] of this page to your wiki, as an article called '''{{FULLPAGENAME}}'''.&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&amp;lt;p class=&amp;quot;katacoda-caption&amp;quot;&amp;gt;&amp;lt;!--{$caption|escape:'html'}--&amp;gt;&amp;lt;script src=&amp;quot;//katacoda.com/embed.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div id=&amp;quot;&amp;lt;!--{$divid|escape:'html'|default:$scenario}--&amp;gt;&amp;quot; data-katacoda-id=&amp;quot;&amp;lt;!--{$scenario|escape:'html'}--&amp;gt;&amp;quot; data-katacoda-color=&amp;quot;&amp;lt;!--{$color|escape:'html'|default:'004d7f'}--&amp;gt;&amp;quot; style=&amp;quot;height: &amp;lt;!--{$height|escape:'html'|default:'600px'}--&amp;gt;; padding-top: &amp;lt;!--{$padding|escape:'html'|default:'0px'}--&amp;gt;;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
	<entry>
		<id>https://all.docs.genesys.com/index.php?title=User:Jaba&amp;diff=8332</id>
		<title>User:Jaba</title>
		<link rel="alternate" type="text/html" href="https://all.docs.genesys.com/index.php?title=User:Jaba&amp;diff=8332"/>
		<updated>2019-04-01T06:23:13Z</updated>

		<summary type="html">&lt;p&gt;Jaba: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#widget:Katacoda|divid=myScenario|scenario=kubernetes/getting-started-with-kubeadm}}&lt;/div&gt;</summary>
		<author><name>Jaba</name></author>
		
	</entry>
</feed>