March 4, 20224 yr Hi! I'm building custom containers using Nix, and have Docker-compatible container images that I'd like to upload to my Unraid server and schedule for running. While it's possible to do that once by logging into the server and running `docker run` with my image uploaded locally, I'd like to integrate with the Docker Unraid interface and manage my container along with others. However, to add a container through the UI I need a container repository, which I don't. Most of the posts I've found here are using Docker to publish the containers, while I'd like to be fully self hosted. Thanks!
March 7, 20224 yr On 3/5/2022 at 12:34 AM, sebastienpierre said: Most of the posts I've found here are using Docker to publish the containers, while I'd like to be fully self hosted. ....you could host your own docker registry: https://hub.docker.com/_/registry/
March 7, 20224 yr Community Expert On 3/4/2022 at 6:34 PM, sebastienpierre said: However, to add a container through the UI I need a container repository, which I don't. In docker terminology registry and image name are not really separate. Just put whatever image name you use in your docker run statement into the repository field and it should work. If you look at the output of 'docker images' in the console you will see that column for the image name is the repository column. Edited March 7, 20224 yr by primeval_god
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.