Wade Barnes
Wade Barnes
Running ``` ./manage build ./manage start --logs ``` Builds and starts `von-network` for me. Try running a `./manage rebuild`.
Does `von-network` work for you without modification to any of the files?
Comment out this line and rebuild: ``` RUN pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host=files.pythonhosted.org --upgrade pip ```
Thanks for the info @TomAtGithub
The existing web server communicates to the network (the 4 nodes) using indy-vdr. The genesis file needed by indy-vdr is generated by the startup scripts. All of the containers are...
@Oudom1, I'm not completely clear on what you're trying to accomplish. It sounds like you've added your new web server to the docker-compose file and you just need to add...
``` ./manage start ``` Full example using [BCovrin Test](http://test.bcovrin.vonx.io/) as an example: ``` ./manage start 138.197.138.255 LOG_LEVEL=info RUST_LOG=error POOL_CONNECTION_DELAY=20 POOL_CONNECTION_ATTEMPTS=30 WEB_SERVER_HOST_PORT=80 "LEDGER_INSTANCE_NAME=BCovrin Test" "INFO_SITE_TEXT=digital.gov.bc.ca/digital-trust" "INFO_SITE_URL=https://digital.gov.bc.ca/digital-trust/" "LEDGER_CACHE_PATH=/home/indy/.indy_client/ledger-cache/ledger-cache-db" "INDY_SCAN_URL=http://test.bcovrin.vonx.io:3707/home/BCOVRIN_TEST" "INDY_SCAN_TEXT=IndyScan - BCovrin...
To regenerate the genesis files you will need to reset your environment `./manage rm` and then run `./manage start `. Otherwise the environment will use the existing genesis files.
I don't see the `./manage rm` in your output. You will also not see the change in the `docker ps` output, you'll see the change the genesis file that gets...
> I have set a static IP for Docker host in the management file. I'm not sure why you would need to do this, it seems unnecessary. > If I...