docker commit <container for your bc/cert-issuer> my_cert_issuer
Can anyone help me out with this command ? "container for your bc " what should I substitute with ? and what other components I should edit more ?
Thank you
docker commit <container for your bc/cert-issuer> my_cert_issuer
Can anyone help me out with this command ? "container for your bc " what should I substitute with ? and what other components I should edit more ?
Thank you
Hey @Clara,
What I usually do is run:
docker ps -l
which gives me something like:
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
8ea2bdaae598 bc/cert-issuer:1.0 “/bin/sh -c 'bitcoin…” 16 hours ago Up 16 hours 8332-8333/tcp, 18332-18333/tcp, 18444/tcp suspicious_meninsky
Excuse the bad formatting, but I grab the first value, “8ea2bdaae598” and stick that in the commit command:
docker commit 8ea2bdaae598 my_cert_issuer
Hey @aronning
Thank you very much for enlightening me with your explanation.
This helps a lot .