<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=6576&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Install Docker on Devuan]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=6576</link>
		<description><![CDATA[The most recent posts in Install Docker on Devuan.]]></description>
		<lastBuildDate>Mon, 20 Apr 2026 20:56:42 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Install Docker on Devuan]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63322#p63322</link>
			<description><![CDATA[<p>Hello:</p><div class="quotebox"><blockquote><div><p>... to suppress confirmation prompts on any command is ...</p></div></blockquote></div><p>Bad practise. *</p><p>Best,</p><p>A.</p><p>* so is not looking at the date on the posts.&#160; 8^°</p>]]></description>
			<author><![CDATA[dummy@example.com (Altoid)]]></author>
			<pubDate>Mon, 20 Apr 2026 20:56:42 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63322#p63322</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install Docker on Devuan]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63319#p63319</link>
			<description><![CDATA[<p>This was helpful. Some additions:</p><p>Current compose version is 5.1.3 (they decided to burn some major numbers to reduce confusion), so download link is:</p><div class="codebox"><pre><code>sudo wget -c https://github.com/docker/compose/releases/download/v5.1.3/docker-compose-`uname -s`-`uname -m` -O /usr/local/bin/docker-compose; sudo chmod +x /usr/local/bin/docker-compose</code></pre></div><p>If you want </p><div class="codebox"><pre><code>docker compose</code></pre></div><p> to work, rather than just </p><div class="codebox"><pre><code>docker-compose</code></pre></div><p> one can make directories at </p><div class="codebox"><pre><code>$HOME/.docker/cli-plugins</code></pre></div><p> and then make a symlink to the docker-compose binary like </p><div class="codebox"><pre><code>ln -s /usr/local/bin/docker-compose docker-compose</code></pre></div><p> Then the following should work:</p><div class="codebox"><pre><code>$ docker compose version
Docker Compose version v5.1.3</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (chabala)]]></author>
			<pubDate>Mon, 20 Apr 2026 19:07:15 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63319#p63319</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install Docker on Devuan]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=49717#p49717</link>
			<description><![CDATA[<p>Running <span class="bbc">sudo apt update &amp;&amp; sudo apt dist-upgrade -y</span> is unnecessary.</p><p>Tutoring people to suppress confirmation prompts on any command is rude, but on a dist-upgrade - where one doesn&#039;t know the side-effects - it is doubly so.</p>]]></description>
			<author><![CDATA[dummy@example.com (boughtonp)]]></author>
			<pubDate>Sat, 27 Apr 2024 12:58:12 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=49717#p49717</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install Docker on Devuan]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=49713#p49713</link>
			<description><![CDATA[<p>Thanks, this is very handy!</p>]]></description>
			<author><![CDATA[dummy@example.com (jaromil)]]></author>
			<pubDate>Sat, 27 Apr 2024 02:29:43 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=49713#p49713</guid>
		</item>
		<item>
			<title><![CDATA[Install Docker on Devuan]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=49710#p49710</link>
			<description><![CDATA[<p>A little how-to on how to install Docker and Docker-Compose on Devuan <br />Note: This works on Debian/Ubuntu.</p><p>Update system:</p><div class="codebox"><pre><code>sudo apt update &amp;&amp; sudo apt dist-upgrade -y</code></pre></div><p>Install Docker</p><div class="codebox"><pre><code>sudo apt install -y docker.io</code></pre></div><p>If you want to run docker as a normal user:</p><div class="codebox"><pre><code>sudo groupadd docker
sudo usermod -aG docker $USER
newgrp docker</code></pre></div><p>If you have problems with Docker mirrors[blockade], you can add more mirrors[example config]:</p><div class="codebox"><pre><code>sudo nano /etc/docker/daemon.json

{
    &quot;max-concurrent-downloads&quot;: 5,
    &quot;registry-mirrors&quot;: [
    &quot;https://rw21enj1.mirror.aliyuncs.com&quot;,
    &quot;https://dockerhub.azk8s.cn&quot;,
    &quot;https://reg-mirror.qiniu.com&quot;,
    &quot;https://hub-mirror.c.163.com&quot;,
    &quot;https://docker.mirrors.ustc.edu.cn&quot;,
    &quot;https://1nj0zren.mirror.aliyuncs.com&quot;,
    &quot;https://quay.io&quot;,
    &quot;https://docker.mirrors.ustc.edu.cn&quot;,
    &quot;http://f1361db2.m.daocloud.io&quot;,
    &quot;https://registry.docker-cn.com&quot;
    ]
}</code></pre></div><p>Restart Docker after changes in the configuration file:</p><p>Init systems[Devuan in this case]</p><div class="codebox"><pre><code>sudo /etc/init.d/docker restart</code></pre></div><p>SystemD systems[remember, this works on Debian/Ubuntu]:</p><div class="codebox"><pre><code>sudo systemctl restart docker</code></pre></div><p>Docker-Compose:<br />==<br />Downloading/Installing in one line:</p><div class="codebox"><pre><code>sudo wget -c https://github.com/docker/compose/releases/download/v2.27.0/docker-compose-`uname -s`-`uname -m` -O /usr/local/bin/docker-compose; sudo chmod +x /usr/local/bin/docker-compose</code></pre></div><p>Proxy for Docker[in case you might need it]:</p><p>Init systems. Edit and adjust:</p><div class="codebox"><pre><code>nano /etc/default/docker

http_proxy=&quot;http://user:password@proxy.domain.com:3128&quot;
https_proxy=&quot;http://user:password@proxy.domain.com:3128&quot;
no_proxy=&quot;localhost,127.0.0.1,::1&quot;</code></pre></div><p>And restart Docker.</p><div class="codebox"><pre><code>sudo /etc/init.d/docker restart</code></pre></div><p>SystemD systems:</p><div class="codebox"><pre><code>sudo nano /etc/systemd/system/docker.service.d/http-proxy.conf

[Service]
Environment=&quot;HTTP_PROXY=http://user:password@proxy.domain.com:3128&quot;
Environment=&quot;HTTPS_PROXY=http://user:password@proxy.domain.com:3128&quot;
Environment=&quot;NO_PROXY=&quot;localhost,127.0.0.1,::1&quot;</code></pre></div><p>And restart Docker:</p><div class="codebox"><pre><code>sudo systemctl daemon-reload
sudo systemctl restart docker</code></pre></div><p>Enjoy! 😎👍</p>]]></description>
			<author><![CDATA[dummy@example.com (Koratsuki84)]]></author>
			<pubDate>Fri, 26 Apr 2024 20:49:56 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=49710#p49710</guid>
		</item>
	</channel>
</rss>
