May 11, 201610 yr I've been wanting to migrate to docker-compose over the unraid docker's templating system in order to allow for easier docker configuration and also to make it easier when I want to delete and recreate my docker.img file. In order to use the newest docker-compose, I needed to upgrade my docker binary to the newest version and figured I'd share the compiled binaries with everybody else. I haven't tried this on any other machines, so I can't confirm the binaries I have compiled will work on other hardware. I believe it should work fine on all Unraid 6.1 machines. Stop the docker service from the settings page Clone my repository: cd /boot && git clone https://github.com/jshridha/unraid-docker-builds.git Copy the docker binaries: mv /usr/bin/docker /usr/bin/docker-orig # Backup original docker binary cd unraid-docker-builds/1.11.0 cp docker-1.11.0 /usr/bin/docker cp docker-containerd /usr/bin/docker-containerd cp docker-containerd-shim /usr/bin/docker-containerd-shim cp docker-containerd-ctr /usr/bin/docker-containerd-ctr docker-runc /usr/bin/docker-runc Patch the rc.d script: sed -i -e 's/${DOCKER} -d/${DOCKER} daemon/g' /etc/rc.d/rc.docker Then just start your docker daemon back up as normal. I also added the copy docker binaries and patch rc.d script steps to my /boot/config/go script so I don't have to worry about reboots causing my containers to not start up. I hope this helps somebody else out. Let me know if you have any issues.
Archived
This topic is now archived and is closed to further replies.