{"id":202,"date":"2020-05-14T09:26:05","date_gmt":"2020-05-14T09:26:05","guid":{"rendered":"https:\/\/linux.how2shout.com\/?p=202"},"modified":"2021-01-01T06:26:21","modified_gmt":"2021-01-01T06:26:21","slug":"quick-steps-to-install-docker-ce-on-opensuse-linux","status":"publish","type":"post","link":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/","title":{"rendered":"Quick Steps to Install Docker-CE on OpenSUSE Linux"},"content":{"rendered":"<p>If you want to convert one of the stable and easy to use Linux OpenSUSE Tumbleweed or Leap 15.1 into a containerized virtualization platform by Docker installation, then here are the steps to follow&#8230;<\/p>\n<p>Docker and OpenSUSE both are opensource platforms, however, SUSE is a full-fledged Linux operating system, while docker is a virtualization platform that can create and manage multiple virtual machines in an isolated container environment. The advantage of using Docker over other platforms such as Oracle VirtualBox or Vmware workstation player, it is lightweight, secure, run directly on OS kernel, quick to deploy machine, however, the difficult part is, a user has to give some to become proficient in using and managing the docker.<\/p>\n<h2>What do you need to set up Docker on SUSE?<\/h2>\n<ul>\n<li>Installed OpenSUSE Linux<\/li>\n<li>A non-root user with <code>sudo<\/code> access<\/li>\n<li>Internet connection<\/li>\n<\/ul>\n<h2>Docker Installation on OpenSUSE Tumbleweed or Leap 15.1<\/h2>\n<h3><strong>Step 1: Run Command line Terminal<\/strong><\/h3>\n<p>If you are using the server version of the SUSE then you already on the command line just move to the next step. Those are on GUI, they can either open the <strong>Terminal<\/strong> from Application or simply using the keyboard shortcut- <strong>CTRL+ALT+T.<\/strong><\/p>\n<h3><strong>Step 2:\u00a0 System update\u00a0<\/strong><\/h3>\n<p>Before moving further, just update your system that will ensure all the available packages and repositories are up to date.<\/p>\n<pre>sudo zypper update<\/pre>\n<h3><strong>Step 3: Docker Installation command for OpenSUSE<\/strong><\/h3>\n<p>To install the Docker we don&#8217;t need to add any third-party repository, all the files we need to set up this virtualization platform are available on the official repo of OpenSUSE. That&#8217;s why in RPM-based Linux, I like it the most.<\/p>\n<pre>sudo zypper install docker-compose<\/pre>\n<p>When it will ask for your permission to download the packages, press <strong>Y<\/strong> and hit the <strong>Enter<\/strong> button.<\/p>\n<p>The output for the above command:<\/p>\n<pre>Loading repository data...\r\nReading installed packages...\r\n'docker-compose' not found in package names. Trying capabilities.\r\nResolving package dependencies...\r\n\r\nThe following 37 NEW packages are going to be installed:\r\ncatatonit containerd criu docker docker-bash-completion docker-libnetwork \r\ndocker-runc git-core git-gui gitk\r\nliblvm2cmd2_03 libnet9 libsha1detectcoll1 lvm2 perl-Error python3-attrs python3-bcrypt\r\n python3-cached-property\r\npython3-docker python3-docker-compose python3-dockerpty python3-docker-pycreds\r\n python3-docopt python3-fluidity-sm\r\npython3-gssapi python3-invoke python3-ipaddr python3-jsonschema python3-lexicon \r\npython3-paramiko python3-protobuf\r\npython3-PyNaCl python3-pyrsistent python3-PyYAML python3-texttable python3-wcwidth\r\n python3-websocket-client\r\n\r\nThe following 6 recommended packages were automatically selected:\r\ncriu git-core lvm2 python3-gssapi python3-invoke python3-wcwidth\r\n\r\n37 new packages to install.\r\nOverall download size: 58.7 MiB. Already cached: 0 B. \r\nAfter the operation, additional 274.8 MiB will be used.\r\nContinue? [y\/n\/v\/...? shows all options] (y): y<\/pre>\n<h3><strong>Step 4: Enable and Start the Docker services<\/strong><\/h3>\n<p>Once the installation has been completed, enable the docker service to run automatically with system boot and then start the same.<\/p>\n<pre>sudo systemctl enable docker<\/pre>\n<pre>sudo systemctl start docker<\/pre>\n<h3><strong>Step 5: Enable Docker to run on OpenSUSE without sudo<\/strong><\/h3>\n<p>Now, the thing is, every time, when we want to run docker on OpenSUSE, we have to use the <strong>sudo<\/strong> with it, if you are comfortable with that you can leave this step. However, those don&#8217;t want to repeat <strong>sudo<\/strong> with every docker command they can run the below-given syntax in their terminal.<\/p>\n<p><strong>Create Docker Group<\/strong><\/p>\n<p>Generally, with its installation, the script will automatically create a docker group on our system, however, you can run the below command to confirm that.<\/p>\n<pre>sudo groupadd docker<\/pre>\n<p><strong>The output:<\/strong><\/p>\n<p><em>groupadd: group &#8216;docker&#8217; already exists<\/em><\/p>\n<p><strong>Next, Add your current system user to the Docker group<\/strong><\/p>\n<pre>sudo gpasswd -a $USER docker<\/pre>\n<p>Now, reload the group ID during a login session., so that our shell could recognize that you are now the member of the docker group.<\/p>\n<pre> newgrp docker<\/pre>\n<p><strong>Note: <\/strong>Instead of running <strong>newgrp<\/strong> docker, you can also properly <strong>log out and log in<\/strong> again to run docker.<\/p>\n<h3><strong>Step 6: Install some Docker image to check it<\/strong><\/h3>\n<p>So, now this containerized platform is on our SUSE systems, and its time to check, whether it is working fine or not, for that here we are downloading the latest Ubuntu Linux docker image<\/p>\n<pre>docker pull ubuntu<\/pre>\n<p>The above command will setup Ubuntu on OpenSUSE inside a virtual container running using docker.<\/p>\n<p><strong>After pulling and installing the image, we can run it:<\/strong><\/p>\n<pre>docker run -it ubuntu<\/pre>\n<h3><strong>To exit the running docker container, simply type <\/strong><\/h3>\n<p><strong>exit<\/strong> or<strong> CTRL+D<\/strong>.<\/p>\n<p><strong>To see all installed containers, type:<\/strong><\/p>\n<pre>docker ps<\/pre>\n<p>You can check out the <a href=\"https:\/\/docs.docker.com\/engine\/reference\/commandline\/update\/\" target=\"_blank\" rel=\"noopener noreferrer\">official page<\/a> to see the commands related to docker container updates such a memory, CPU, and more.<\/p>\n<figure id=\"attachment_203\" aria-describedby=\"caption-attachment-203\" style=\"width: 1071px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" class=\"wp-image-203 size-full\" src=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/05\/Install-Docker-CE-on-OpenSUSE-Linux-min.jpg\" alt=\"Install Docker-CE on OpenSUSE Linux-min\" width=\"1071\" height=\"654\" \/><figcaption id=\"caption-attachment-203\" class=\"wp-caption-text\">Run Docker-CE on OpenSUSE Linux<\/figcaption><\/figure>\n<p>&nbsp;<\/p>\n<p><strong>Other Linux tutorials:<\/strong><\/p>\n<ul>\n<li><a href=\"https:\/\/linux.how2shout.com\/how-to-install-chrome-on-opensuse-tumbleweed-or-leap-15\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to install Chrome on OpenSUSE Tumbleweed or Leap 15.1<\/a><\/li>\n<li><a href=\"https:\/\/linux.how2shout.com\/how-to-install-woeusb-on-ubuntu-20-04-lts\/\" target=\"_blank\" rel=\"noopener noreferrer\">Install WoeUSB on Ubuntu 20.04 LTS<\/a><\/li>\n<li><a href=\"https:\/\/linux.how2shout.com\/how-to-install-virtualbox-on-opensuse-tumbleweed-leap\/\" target=\"_blank\" rel=\"noopener noreferrer\">Install Virtualbox on OpenSUSE Tumbleweed &amp; Leap<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>If you want to convert one of the stable and easy to use Linux OpenSUSE Tumbleweed or Leap 15.1 into a containerized virtualization platform by Docker installation, then here are the steps to follow&#8230; Docker and OpenSUSE both are opensource platforms, however, SUSE is a full-fledged Linux operating system, while docker is a virtualization platform [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":203,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_sitemap_exclude":false,"_sitemap_priority":"","_sitemap_frequency":"","_mbp_gutenberg_autopost":false,"footnotes":""},"categories":[4,423],"tags":[532,533,535,28,470,505,504,31,534],"class_list":{"0":"post-202","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-linux","8":"category-opensuse","9":"tag-docker","10":"tag-docker-compose-on-opensuse","11":"tag-docker-containers-suse","12":"tag-linux","13":"tag-opensuse","14":"tag-opensuse-leap","15":"tag-suse-tumbleweed","16":"tag-tutorial","17":"tag-virtualization"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Quick Steps to Install Docker-CE on OpenSUSE Linux - LinuxShout<\/title>\n<meta name=\"description\" content=\"Tutorial on how to install and run Docker Compose containers virtulaization platfom on Linux OpenSUSE Tumbleweed or Leap 15.1 without sudo user\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Quick Steps to Install Docker-CE on OpenSUSE Linux\" \/>\n<meta property=\"og:description\" content=\"Tutorial on how to install and run Docker Compose containers virtulaization platfom on Linux OpenSUSE Tumbleweed or Leap 15.1 without sudo user\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxShout\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/how2shout\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-14T09:26:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-01T06:26:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/05\/Install-Docker-CE-on-OpenSUSE-Linux-min.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1071\" \/>\n\t<meta property=\"og:image:height\" content=\"654\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Heyan Maurya\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@h2smedia\" \/>\n<meta name=\"twitter:site\" content=\"@h2smedia\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Heyan Maurya\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/\"},\"author\":{\"name\":\"Heyan Maurya\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/person\\\/102d73e20384ea409022d5bafddc0f72\"},\"headline\":\"Quick Steps to Install Docker-CE on OpenSUSE Linux\",\"datePublished\":\"2020-05-14T09:26:05+00:00\",\"dateModified\":\"2021-01-01T06:26:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/\"},\"wordCount\":620,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Install-Docker-CE-on-OpenSUSE-Linux-min.jpg\",\"keywords\":[\"docker\",\"docker compose on OpenSUSE\",\"docker containers SUSE\",\"Linux\",\"opensuse\",\"opensuse leap\",\"SUSE tumbleweed\",\"tutorial\",\"virtualization\"],\"articleSection\":[\"Linux\",\"Opensuse\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/#respond\"]}],\"copyrightYear\":\"2020\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/\",\"name\":\"Quick Steps to Install Docker-CE on OpenSUSE Linux - LinuxShout\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Install-Docker-CE-on-OpenSUSE-Linux-min.jpg\",\"datePublished\":\"2020-05-14T09:26:05+00:00\",\"dateModified\":\"2021-01-01T06:26:21+00:00\",\"description\":\"Tutorial on how to install and run Docker Compose containers virtulaization platfom on Linux OpenSUSE Tumbleweed or Leap 15.1 without sudo user\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Install-Docker-CE-on-OpenSUSE-Linux-min.jpg\",\"contentUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Install-Docker-CE-on-OpenSUSE-Linux-min.jpg\",\"width\":1071,\"height\":654,\"caption\":\"Install Docker-CE on OpenSUSE Linux-min\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/quick-steps-to-install-docker-ce-on-opensuse-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linux.how2shout.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Quick Steps to Install Docker-CE on OpenSUSE Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#website\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/\",\"name\":\"LinuxShout\",\"description\":\"Find the open source solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\"},\"alternateName\":\"Linux how2shout\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linux.how2shout.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#organization\",\"name\":\"LinuxShout\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Linux-Shout-Logo.png\",\"contentUrl\":\"https:\\\/\\\/linux.how2shout.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/Linux-Shout-Logo.png\",\"width\":503,\"height\":349,\"caption\":\"LinuxShout\"},\"image\":{\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/how2shout\",\"https:\\\/\\\/x.com\\\/h2smedia\",\"https:\\\/\\\/instagram.com\\\/h2smedia\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/h2smedia\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/how2shout\",\"https:\\\/\\\/youtube.com\\\/h2smedia\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linux.how2shout.com\\\/#\\\/schema\\\/person\\\/102d73e20384ea409022d5bafddc0f72\",\"name\":\"Heyan Maurya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g\",\"caption\":\"Heyan Maurya\"},\"description\":\"I have a keen interest in all kinds of technologies, from consumer-tech to enterprise solutions. However, I am still trying to learn Linux and whatever the problems I face, trying to give solutions for the same, here...\",\"sameAs\":[\"https:\\\/\\\/www.how2shout.com\\\/\"],\"url\":\"https:\\\/\\\/linux.how2shout.com\\\/author\\\/heyan\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Quick Steps to Install Docker-CE on OpenSUSE Linux - LinuxShout","description":"Tutorial on how to install and run Docker Compose containers virtulaization platfom on Linux OpenSUSE Tumbleweed or Leap 15.1 without sudo user","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/","og_locale":"en_US","og_type":"article","og_title":"Quick Steps to Install Docker-CE on OpenSUSE Linux","og_description":"Tutorial on how to install and run Docker Compose containers virtulaization platfom on Linux OpenSUSE Tumbleweed or Leap 15.1 without sudo user","og_url":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/","og_site_name":"LinuxShout","article_publisher":"https:\/\/www.facebook.com\/how2shout","article_published_time":"2020-05-14T09:26:05+00:00","article_modified_time":"2021-01-01T06:26:21+00:00","og_image":[{"width":1071,"height":654,"url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/05\/Install-Docker-CE-on-OpenSUSE-Linux-min.jpg","type":"image\/jpeg"}],"author":"Heyan Maurya","twitter_card":"summary_large_image","twitter_creator":"@h2smedia","twitter_site":"@h2smedia","twitter_misc":{"Written by":"Heyan Maurya","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/#article","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/"},"author":{"name":"Heyan Maurya","@id":"https:\/\/linux.how2shout.com\/#\/schema\/person\/102d73e20384ea409022d5bafddc0f72"},"headline":"Quick Steps to Install Docker-CE on OpenSUSE Linux","datePublished":"2020-05-14T09:26:05+00:00","dateModified":"2021-01-01T06:26:21+00:00","mainEntityOfPage":{"@id":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/"},"wordCount":620,"commentCount":2,"publisher":{"@id":"https:\/\/linux.how2shout.com\/#organization"},"image":{"@id":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/05\/Install-Docker-CE-on-OpenSUSE-Linux-min.jpg","keywords":["docker","docker compose on OpenSUSE","docker containers SUSE","Linux","opensuse","opensuse leap","SUSE tumbleweed","tutorial","virtualization"],"articleSection":["Linux","Opensuse"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/#respond"]}],"copyrightYear":"2020","copyrightHolder":{"@id":"https:\/\/linux.how2shout.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/","url":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/","name":"Quick Steps to Install Docker-CE on OpenSUSE Linux - LinuxShout","isPartOf":{"@id":"https:\/\/linux.how2shout.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/#primaryimage"},"image":{"@id":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/05\/Install-Docker-CE-on-OpenSUSE-Linux-min.jpg","datePublished":"2020-05-14T09:26:05+00:00","dateModified":"2021-01-01T06:26:21+00:00","description":"Tutorial on how to install and run Docker Compose containers virtulaization platfom on Linux OpenSUSE Tumbleweed or Leap 15.1 without sudo user","breadcrumb":{"@id":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/#primaryimage","url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/05\/Install-Docker-CE-on-OpenSUSE-Linux-min.jpg","contentUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/05\/Install-Docker-CE-on-OpenSUSE-Linux-min.jpg","width":1071,"height":654,"caption":"Install Docker-CE on OpenSUSE Linux-min"},{"@type":"BreadcrumbList","@id":"https:\/\/linux.how2shout.com\/quick-steps-to-install-docker-ce-on-opensuse-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linux.how2shout.com\/"},{"@type":"ListItem","position":2,"name":"Quick Steps to Install Docker-CE on OpenSUSE Linux"}]},{"@type":"WebSite","@id":"https:\/\/linux.how2shout.com\/#website","url":"https:\/\/linux.how2shout.com\/","name":"LinuxShout","description":"Find the open source solutions","publisher":{"@id":"https:\/\/linux.how2shout.com\/#organization"},"alternateName":"Linux how2shout","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linux.how2shout.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/linux.how2shout.com\/#organization","name":"LinuxShout","url":"https:\/\/linux.how2shout.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linux.how2shout.com\/#\/schema\/logo\/image\/","url":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/06\/Linux-Shout-Logo.png","contentUrl":"https:\/\/linux.how2shout.com\/wp-content\/uploads\/2020\/06\/Linux-Shout-Logo.png","width":503,"height":349,"caption":"LinuxShout"},"image":{"@id":"https:\/\/linux.how2shout.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/how2shout","https:\/\/x.com\/h2smedia","https:\/\/instagram.com\/h2smedia","https:\/\/www.linkedin.com\/company\/h2smedia\/","https:\/\/www.pinterest.com\/how2shout","https:\/\/youtube.com\/h2smedia"]},{"@type":"Person","@id":"https:\/\/linux.how2shout.com\/#\/schema\/person\/102d73e20384ea409022d5bafddc0f72","name":"Heyan Maurya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b07b375c19891b0589da722cb1e3dff333ec63dd8467afc114611044e87cfe9a?s=96&d=mm&r=g","caption":"Heyan Maurya"},"description":"I have a keen interest in all kinds of technologies, from consumer-tech to enterprise solutions. However, I am still trying to learn Linux and whatever the problems I face, trying to give solutions for the same, here...","sameAs":["https:\/\/www.how2shout.com\/"],"url":"https:\/\/linux.how2shout.com\/author\/heyan\/"}]}},"_links":{"self":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/202","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/comments?post=202"}],"version-history":[{"count":1,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/202\/revisions"}],"predecessor-version":[{"id":1612,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/posts\/202\/revisions\/1612"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media\/203"}],"wp:attachment":[{"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/media?parent=202"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/categories?post=202"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linux.how2shout.com\/wp-json\/wp\/v2\/tags?post=202"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}