<?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 &#8211; Made For Cloud</title>
	<atom:link href="https://madeforcloud.com/category/docker/feed/" rel="self" type="application/rss+xml" />
	<link>https://madeforcloud.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 18 Oct 2025 23:13:25 +0000</lastBuildDate>
	<language>en-AU</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>AlmaLinux 10 &#8211; Install docker-ce</title>
		<link>https://madeforcloud.com/2025/10/19/almalinux-10-install-docker-ce/</link>
					<comments>https://madeforcloud.com/2025/10/19/almalinux-10-install-docker-ce/#respond</comments>
		
		<dc:creator><![CDATA[gocallag]]></dc:creator>
		<pubDate>Sat, 18 Oct 2025 23:13:25 +0000</pubDate>
				<category><![CDATA[AlmaLinux]]></category>
		<category><![CDATA[Docker]]></category>
		<guid isPermaLink="false">https://madeforcloud.com/?p=272</guid>

					<description><![CDATA[You can read lots of blogs about this. This is the simple minimal version 🙂 Assuming you&#8217;re doing everything as root, but if you aren&#8217;t then prefix these commands with sudo as appropriate for your environment. That&#8217;s it. Done. Now if you want to allow non-root users to use docker.]]></description>
										<content:encoded><![CDATA[
<p>You can read lots of blogs about this. This is the simple minimal version <img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p>Assuming you&#8217;re doing everything as root, but if you aren&#8217;t then prefix these commands with sudo as appropriate for your environment.</p>



<p></p>



<pre class="wp-block-code"><code>dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
dnf install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
systemctl enable --now docker</code></pre>



<p>That&#8217;s it. Done.  Now if you want to allow non-root users to use docker.</p>



<pre class="wp-block-code"><code> usermod -aG docker user   # user is the non-root user you want to be able to use docker</code></pre>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://madeforcloud.com/2025/10/19/almalinux-10-install-docker-ce/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>docker-compose stopped working?</title>
		<link>https://madeforcloud.com/2024/01/13/docker-compose-stopped-working/</link>
					<comments>https://madeforcloud.com/2024/01/13/docker-compose-stopped-working/#respond</comments>
		
		<dc:creator><![CDATA[gocallag]]></dc:creator>
		<pubDate>Sat, 13 Jan 2024 06:11:53 +0000</pubDate>
				<category><![CDATA[Docker]]></category>
		<category><![CDATA[Docker-Compose]]></category>
		<guid isPermaLink="false">http://madeforcloud.com/?p=156</guid>

					<description><![CDATA[The symptom is when using the pip3 (python) version of docker compose you get : kwargs_from_env() got an unexpected keyword argument &#8216;ssl_version&#8217; Docker’s SDK for Python v7.0.0+ isn’t compatible with docker compose v1, which the python version of docker compose provides. To continue using the python version of docker-compose, ie docker compose v1, downgrade the&#8230;<p><a class="more-link" href="https://madeforcloud.com/2024/01/13/docker-compose-stopped-working/" title="Continue reading &#8216;docker-compose stopped working?&#8217;">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
										<content:encoded><![CDATA[
<p>The symptom is when using the pip3 (python) version of docker compose you get :</p>



<p><strong>kwargs_from_env() got an unexpected keyword argument &#8216;ssl_version&#8217;</strong></p>



<p>Docker’s SDK for Python v7.0.0+ isn’t compatible with docker compose v1, which the python version of docker compose provides. To continue using the python version of docker-compose, ie docker compose v1, downgrade the docker SDK for python to v6.1.3. </p>



<p>However, as the Python version is deprecated, I’ve personally switched to docker compose v2, a golang implementation and sub-option of the Docker command.</p>



<pre class="wp-block-code"><code>docker compose version
Docker Compose version v2.21.0</code></pre>



<p>If you still want to use the python version of docker-compose you&#8217;ll need to downgrade the docker sdk for python to version 6.1.3.</p>



<pre class="wp-block-code"><code>pip3 list | egrep docker
docker                    7.0.0
pip3 install docker==6.1.3
Collecting docker==6.1.3
.
.
.</code></pre>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://madeforcloud.com/2024/01/13/docker-compose-stopped-working/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
