url2img
url2img copied to clipboard
Make available in docker hub?
Please see my pull request: https://github.com/gen2brain/url2img/pull/1
It adds docker support. Now my question is, do you have a docker hub account or something where we can push the container to? This would mean that people simply need to run docker run -p 55888:55888 name-of-your-image
instead of building local dockerfile.
For example, you can now do the following:
docker run --name url2img -p 55888:55888 rogierlommers/url2img
And you have a working daemon listening on port 55888.
Thanks. I merged your pull request.
I don't use/like docker and don't have docker hub account, but I am thinking maybe to write dockerfile that can compile shared version of url2img.
Ok, you can also add my (public) docker repository if you like: https://hub.docker.com/r/rogierlommers/url2img/
This way people don't have to build their own local container, but simply can do docker run --name url2img -p 55888:55888 rogierlommers/url2img
.