You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I checked the documentation and found no answer to my problem.
I checked the existing issues to make sure my problem has not already been reported.
Expected Behavior
I want to run a docker container with the image fetchai/fetchd:0.10.7. I have set the environment variable $NETWORK to dorado. I expect the container to start without any errors. These are the commands i am using:
docker run -e NETWORK=dorado-1 -e MONIKER=test fetchai/fetchd:0.10.7
docker run -e NETWORK=dorado -e MONIKER=test fetchai/fetchd:0.10.7
Current Behavior
After executing the docker run, i receive an error:
parse error: Expected string key before ':' at line 1, column 4
The URL's https://raw.githubusercontent.com/fetchai/networks-dorado/feature/next/bootstrap/boostrap.json and https://raw.githubusercontent.com/fetchai/networks-dorado-1/feature/next/bootstrap/boostrap.json do not exist, which causes the error.
To Reproduce
Execute the following:
docker run -e NETWORK=dorado -e MONIKER=test fetchai/fetchd:0.10.7
docker run -e NETWORK=dorado-1 -e MONIKER=test fetchai/fetchd:0.10.7
Context
Using Docker Image fetchai/fetchd:0.10.7
Using Dorado Testnet
Failure Logs
See above
The text was updated successfully, but these errors were encountered:
Prerequisites
Expected Behavior
I want to run a docker container with the image
fetchai/fetchd:0.10.7
. I have set the environment variable$NETWORK
todorado
. I expect the container to start without any errors. These are the commands i am using:Current Behavior
After executing the docker run, i receive an error:
This error is caused in the entrypoint script
The script is trying to execute the following:
bootstrap_url="https://raw.githubusercontent.com/fetchai/networks-$NETWORK/feature/next/bootstrap/boostrap.json"
The URL's
https://raw.githubusercontent.com/fetchai/networks-dorado/feature/next/bootstrap/boostrap.json
andhttps://raw.githubusercontent.com/fetchai/networks-dorado-1/feature/next/bootstrap/boostrap.json
do not exist, which causes the error.To Reproduce
Execute the following:
Context
fetchai/fetchd:0.10.7
Failure Logs
See above
The text was updated successfully, but these errors were encountered: