October 12, 201411 yr Good day everyone, I haven't found the info on here so I thought I would ask. I've got a docker file that I'd like to install but it's NOT available inside the registry (https://registry.hub.docker.com/), it's actually hosted on github. I've tried doing it through the docker page (Unraid 6.0 beta 10a) by putting the github page instead of the registry in the field "Repository" but when I try to add it, I get this: 2014/10/12 15:25:21 Invalid repository name (ex: "registry.domain.tld/myrepos") The command failed. Is there a way to add a docker file NOT from the official registry? Thanks and have a good day!
October 12, 201411 yr Heres how I did it for Node-Red and BTSYNC create a directory and save the Dockerfile in it In that directory (eg for Node-red) docker build --tag="nodered” . docker run -d --name nodered -p 1880:1880 -v /etc/localtime:/etc/localtime:ro -v /mnt/disk9/appdata/nodered:/config:rw nodered Do not forget the DOT at the end of the first line!!!. There may be extra files to download as well as the Dockerfile - save them in the same directory. I think that you can do a pull from Github but Unraid didn't have the necessary files to do it (and I didnt know how to install them) See here for the post http://lime-technology.com/forum/index.php?topic=34846.msg323940#msg323940
October 13, 201411 yr Author I'm sure this will be valuable to other members on here so thanks for the info. I've tried it and it works, obviously as long as your dockerfile is "working". The one I tried was successfully built but when starting it, it didn't work. Also, for anyone going down that route, take note that I wasn't able to manage it through the Web docker management UI even after installing it. It shows up but you can't do much with it.
Archived
This topic is now archived and is closed to further replies.