private docker


Recommended Posts

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?

Link to comment

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.

Link to comment

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.

 

 

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.