radicle-bins
                                
                                 radicle-bins copied to clipboard
                                
                                    radicle-bins copied to clipboard
                            
                            
                            
                        Dockerized project
Hi! I saw this project today and I love it! I tried to pull the image from gcr to host my own node, but I can't access them. Somehow somebody can help me? How can I run with docker?
Thanks!
Ah, sorry: our CI is currently tagging the image only by commit SHA1 (not "latest" or anything). Try:
docker pull gcr.io/opensourcecoin/radicle-seed-node:f1462b92a06ef65ec4b65201e9801473a41b4ee3
Ah, sorry: our CI is currently tagging the image only by commit SHA1 (not "latest" or anything). Try: docker pull gcr.io/opensourcecoin/radicle-seed-node:f1462b92a06ef65ec4b65201e9801473a41b4ee3
Hi there,
I pulled the latest docker image (I believe it's gcr.io/opensourcecoin/radicle-seed-node@sha256:714b84d6d3d872620291a6ffd34bf14555750dd6cabd9a76fa77c2b389624a03). Could you advise what docker command parameters I should run it with?
How to use it with docker? Would be cool to have this in either docs / readme
I meant passing command flags to radicle image and stuff
The image simply sets the radicle-seed-node binary as the entrypoint. So whatever CLI arguments you'd pass to radicle-seed-node, you'd pass to docker run. Try
docker run gcr.io/opensourcecoin/radicle-seed-node@sha256:714b84d6d3d872620291a6ffd34bf14555750dd6cabd9a76fa77c2b389624a03 --help
@kim thanks for explaining this! is there a docker image for keyutil as well? it fails to compile on low-spec VPS (see #116) and therefore I can't use radicle-seed-node...
@kim thanks for explaining this! is there a docker image for keyutil as well? it fails to compile on low-spec VPS (see #116) and therefore I can't use
radicle-seed-node...
Perhaps you can generate the key locally and scp it to the remote host?
@cloudhead thanks, will try that