<?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-Compose &#8211; Made For Cloud</title>
	<atom:link href="https://madeforcloud.com/category/docker-compose/feed/" rel="self" type="application/rss+xml" />
	<link>https://madeforcloud.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 13 Jan 2024 06:11:53 +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>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>
