indy-node icon indicating copy to clipboard operation
indy-node copied to clipboard

Error while installing the indy-node package in docker pool setup

Open vikash-ftw opened this issue 1 year ago • 3 comments

I am following the indy-node docker pool setup to create the network on my Ubuntu 20.04.5 LTS machine. Following this document - doc link

I git cloned the indy-node repo and after cloning I changed to the following directory - indy-node/environment/docker/pool

And then used the command - ./pool_start.sh 4 10.0.0.2,10.0.0.3,10.0.0.4,10.0.0.5 10 9701

Now facing the error while building indycore attached in below image Screenshot 2024-03-14 115319 Screenshot 2024-03-14 114351

Help me out with any solution or any new latest documentation or setups to run a indy network in my ubuntu machine.

vikash-ftw avatar Mar 14 '24 06:03 vikash-ftw

The short version is here; https://github.com/hyperledger/indy-node/issues/1846

  • The docker environment is outdated.

If you are interested in getting this working, have a look at the Dockerfile referenced in the link to see how the installation process (and repositories) have changed. Other references you can use are the Dockerfiles for the dev container and git pod environments (which are basically the same).

  • https://github.com/hyperledger/indy-node/blob/main/.devcontainer/Dockerfile
  • https://github.com/hyperledger/indy-node/blob/main/.gitpod.Dockerfile

Another example can be found here:

  • https://github.com/WadeBarnes/docker-container-testing/blob/main/Dockerfile.node.ubuntu2004

WadeBarnes avatar Mar 14 '24 12:03 WadeBarnes

Please feel free to contribute any fixes through a PR.

WadeBarnes avatar Mar 14 '24 12:03 WadeBarnes

The error message mentions the line RUN apt-get update -y && apt-get install -y indy-node libindy. This line is most likely located in the Dockerfile used to build the indycore image. Make sure this Dockerfile is present in the expected location within the indy-node repository you cloned.

iftikar0016 avatar May 04 '24 13:05 iftikar0016