<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Docker in Suse Entreprise Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/docker-in-suse-entreprise/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Fri, 11 Jan 2019 14:34:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>Install and  configure  Docker in Suse Entreprise  and  Openssuse 15</title>
		<link>https://www.osradar.com/install-and-configure-docker-in-suse-entreprise-and-openssuse-15/</link>
					<comments>https://www.osradar.com/install-and-configure-docker-in-suse-entreprise-and-openssuse-15/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Fri, 11 Jan 2019 14:33:58 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Docker in Suse Entreprise]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=9114</guid>

					<description><![CDATA[<p>Whats is Docker ? Wikipedia says Docker is a computer program that performs operating-system-level virtualization, also known as &#8220;containerization&#8221;.  first time released  2013 and is developed by Docker, Inc. Docker is opensource project to automate deployment of applications using containers. the containers allow the developers to package the applications.  its also designed to deliver the applications faster and with docker [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-and-configure-docker-in-suse-entreprise-and-openssuse-15/">Install and  configure  Docker in Suse Entreprise  and  Openssuse 15</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Whats is Docker ? Wikipedia says <b>Docker</b> is a computer program that performs operating-system-level virtualization, also known as &#8220;containerization&#8221;.  first time released  2013 and is developed by Docker, Inc.</p>
<p>Docker is opensource project to automate deployment of applications using containers. the containers allow the developers to package the applications.  its also designed to deliver the applications faster and with docker you can separate the application from the infrastructure and tread your infra like a managed application</p>
<p>i will try to explain in this tutorial : Install and configure Docker in Suse Entreprise and Openssuse 15</p>
<p>I- Update your System</p>
<pre class="">sudo zypper up -y</pre>
<p><img loading="lazy" class="alignnone size-full wp-image-9122" src="https://www.osradar.com/wp-content/uploads/2019/01/opensuse11.png" alt="" width="1177" height="294" srcset="https://www.osradar.com/wp-content/uploads/2019/01/opensuse11.png 1177w, https://www.osradar.com/wp-content/uploads/2019/01/opensuse11-300x75.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/opensuse11-768x192.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/opensuse11-1024x256.png 1024w, https://www.osradar.com/wp-content/uploads/2019/01/opensuse11-1068x267.png 1068w" sizes="(max-width: 1177px) 100vw, 1177px" /></p>
<p>II-  Install  Docker in Opensuse / Suse Entreprise</p>
<p>you don&#8217;t need  any extra packages to install Docker , just with command  install docker</p>
<pre class="">sudo  zypper in docker -y</pre>
<pre class="">osradar@linux-b7wo:~&gt; sudo  zypper  in  docker
Building repository 'openSUSE-Leap-15.0-1' cache .................................................................................................................[
Building repository 'openSUSE-Leap-15.0-Non-Oss' cache ...........................................................................................................[
Building repository 'openSUSE-Leap-15.0-Update' cache ............................................................................................................[
Building repository 'openSUSE-Leap-15.0-Update-Non-Oss' cache ....................................................................................................[
Loading repository data...
Reading installed packages...
Resolving package dependencies...

The following 17 NEW packages are going to be installed:
  catatonit containerd criu docker docker-bash-completion docker-libnetwork docker-runc git-core git-gui gitk libnet9 libpcre2-8-0 libprotobuf-c1 libsha1detectcoll
  perl-Error python2-ipaddr python2-protobuf</pre>
<p><img loading="lazy" class="alignnone size-full wp-image-9127" src="https://www.osradar.com/wp-content/uploads/2019/01/opensuse12.png" alt="" width="1049" height="252" srcset="https://www.osradar.com/wp-content/uploads/2019/01/opensuse12.png 1049w, https://www.osradar.com/wp-content/uploads/2019/01/opensuse12-300x72.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/opensuse12-768x184.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/opensuse12-1024x246.png 1024w" sizes="(max-width: 1049px) 100vw, 1049px" /></p>
<p><strong>Enable and start Docker service:</strong></p>
<pre class="">systemctl enable docker
systemctl start docker</pre>
<p><strong>How to user Docker</strong></p>
<p>there is many command to use to manage you Dockers containers</p>
<p><strong>Search Docker images</strong></p>
<p>To find Dockers containers  you can command search .   ( centos/wordpress/ubuntu or others..  )</p>
<pre class="">sudo  docker  search  centos</pre>
<p>&nbsp;</p>
<pre class="">osradar@linux-b7wo:~&gt; sudo docker search centos
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
centos The official build of CentOS. 5102 [OK]
ansible/centos7-ansible Ansible on Centos7 119 [OK]
jdeathe/centos-ssh CentOS-6 6.10 x86_64 / CentOS-7 7.5.1804 x86… 105 [OK]
consol/centos-xfce-vnc Centos container with "headless" VNC session… 75 [OK]
imagine10255/centos6-lnmp-php56 centos6-lnmp-php56 48 [OK]
centos/mysql-57-centos7 MySQL 5.7 SQL database server 45
tutum/centos Simple CentOS docker image with SSH access 43
openshift/base-centos7 A Centos7 derived base image for Source-To-I… 39
gluster/gluster-centos Official GlusterFS Image [ CentOS-7 + Glust… 38 [OK]
centos/postgresql-96-centos7 PostgreSQL is an advanced Object-Relational … 36
centos/python-35-centos7 Platform for building and running Python 3.5… 33
kinogmt/centos-ssh CentOS with SSH 25 [OK]
openshift/jenkins-2-centos7 A Centos7 based Jenkins v2.x image for use w… 20
centos/php-56-centos7 Platform for building and running PHP 5.6 ap… 18
pivotaldata/centos-gpdb-dev CentOS image for GPDB development. Tag names… 10
openshift/wildfly-101-centos7 A Centos7 based WildFly v10.1 image for use … 6
openshift/jenkins-1-centos7 DEPRECATED: A Centos7 based Jenkins v1.x ima… 4</pre>
<p>Download  latest  Centos container</p>
<pre class="">sudo docker pull centos</pre>
<pre class="">osradar@linux-b7wo:~&gt; sudo docker pull centos
Using default tag: latest
latest: Pulling from library/centos
a02a4930cb5d: Downloading [=============================================&gt; ] 68.79MB/75.17MB</pre>
<p>&nbsp;</p>
<p>check if the images is correctly downloaded</p>
<pre class="">sudo docker images

osradar@linux-b7wo:~&gt; sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
centos latest 1e1148e4cc2c 5 weeks ago 202MB
osradar@linux-b7wo:~&gt;</pre>
<p>Lunch the container with the Centos image</p>
<pre class="">osradar@linux-b7wo:~&gt; sudo docker run -i -t centos /bin/bash

[root@3b9d430166e8 /]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)
[root@3b9d430166e8 /]#</pre>
<p>&nbsp;</p>
<p>to Exit and keep  the container running,  use the command CTRL  +P + Q</p>
<p>List The containers with command  docker ps</p>
<pre class="">osradar@linux-b7wo:~&gt; sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
81369fe86348 centos "/bin/bash" 2 minutes ago Up 2 minutes zealous_mayer</pre>
<p><strong>How to Start/Stop/ and Attach Container</strong><br />
You can start, stop or attach  any container with following commands.</p>
<p>First List the containers</p>
<p>sudo docker ps</p>
<p><img loading="lazy" class="alignnone size-full wp-image-9182" src="https://www.osradar.com/wp-content/uploads/2019/01/docker-ps11.png" alt="" width="1192" height="88" srcset="https://www.osradar.com/wp-content/uploads/2019/01/docker-ps11.png 1192w, https://www.osradar.com/wp-content/uploads/2019/01/docker-ps11-300x22.png 300w, https://www.osradar.com/wp-content/uploads/2019/01/docker-ps11-768x57.png 768w, https://www.osradar.com/wp-content/uploads/2019/01/docker-ps11-1024x76.png 1024w, https://www.osradar.com/wp-content/uploads/2019/01/docker-ps11-1068x79.png 1068w" sizes="(max-width: 1192px) 100vw, 1192px" /></p>
<p>To start container use  next command.</p>
<pre class="">docker start &lt;CONTAINER_ID&gt;</pre>
<p>To stop container do</p>
<pre class="">docker stop &lt;CONTAINER_ID&gt;</pre>
<p>To attach to currently running container  do</p>
<pre class="">docker attach &lt;CONTAINER_ID&gt;</pre>
<p>example of  attaching my Archlinux Contianer</p>
<pre class="">osradar@linux-b7wo:~&gt; sudo docker attach 15770de227ce
[root@15770de227ce /]# uname -a
Linux 15770de227ce 4.12.14-lp150.11-default #1 SMP Fri May 11 08:28:30 UTC 2018 (a9fee09) x86_64 GNU/Linux
[root@15770de227ce /]#</pre>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-and-configure-docker-in-suse-entreprise-and-openssuse-15/">Install and  configure  Docker in Suse Entreprise  and  Openssuse 15</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-and-configure-docker-in-suse-entreprise-and-openssuse-15/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
