March 31, 201511 yr Can I create docker without using github or register on docker page? and apply on unraid?
March 31, 201511 yr I'm not sure exactly the steps, but you download a base image and then set it up the way you want, then the next step is to upload it to docker. So I don't see any reason why not. But if you create a guthub account and docker account it makes life a lot easier. May I ask why you would want it private?
March 31, 201511 yr Can I create docker without using github or register on docker page? and apply on unraid? Yes you can. You can build everything locally if that is what you want. Make your dockerfile and then build the docker with this command: docker build --tag="some-name" . It's important that you execute the command in the folder where the dockerfile is. After it is built, you can start the container with: docker run -v /some/folder/to/map:/folder/inside/docker -p portnumber:portnumber imageID You should read up on docker on the documentation page of docker.io to learn how the commands work. This was just written from memory, so it might not even be correct You can also make a docker template for your container. You should be able to do this from the advanced view on the add container on the docker page of unRAID. Instead of the repository you can use the image id or the tag you gave it when you built it.
March 31, 201511 yr Author Thanks! I'm devoloping a cloud storage platform, but it's in beta state i don't want to publish nothing to the comunity after the aplication pass some security audit. It's like OwnCloud but faster and use virtual filesystem to connect and centralize some file system protocols like OpenStack(Hubic) Webdav, ftp,smb,nfs... And I want to implement rtorrent/deluge on multi user accounts. First I want to test in my Family NAS.
Archived
This topic is now archived and is closed to further replies.