[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
howtos:cloud:docker [2018/03/09 10:49 (UTC)] – created bifferoshowtos:cloud:docker [2018/03/09 11:16 (UTC)] – [Docker on Slackware] bifferos
Line 1: Line 1:
 ====== Docker on Slackware ====== ====== Docker on Slackware ======
  
-There's a Slackware package for Docker on Slackbuilds, but there is a small caveat when installing.+There's a Slackware package for Docker on Slackbuilds, but there is a small caveat when installing.  In case you are wondering, the docker build gives you the CE version of Docker.
  
 ===== Steps to install ===== ===== Steps to install =====
  
-As root:+As root, first install skpkg:
  
 <code> <code>
Line 33: Line 33:
 # slpkg -s sbo docker-compose # slpkg -s sbo docker-compose
 </code> </code>
 +
 +Next ensure docker starts on boot.  Edit /etc/rc.d/rc.local, add this:
 +
 +<code>
 +# Start docker
 +if [ -x /etc/rc.d/rc.docker ]; then
 +  /etc/rc.d/rc.docker start
 +fi
 +</code>
 +
 +<code>
 +# chmod 755 /etc/rc.d/rc.docker
 +# /etc/rc.d/rc.docker start
 +</code>
 +
 +Check /var/log/docker.log for any issues.
  
  
 howtos:cloud:docker ()