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
If you setup the demo and encounter a 307 error recommend to take the following steps to cleanup and start over. The communication with the ledger is affected and it is not possible to run the demo. Here are some recommendations for other errors.
4
+
* 306: you already have a configured ledger. Perform clean start.
5
+
* 301: you are trying to create a ledger but it is already configured. A single failure will cause a problem when opening the ledger. Perform clean install.
6
+
* 212: wallet is not found. When this occur stop and start container: Ctrl-C, docker-compose down, docker-compose up
7
+
8
+
## Overview steps for clean start
9
+
10
+
1. Remove existing instances
11
+
1. Reset source files
12
+
1. Perform a new build
13
+
1. Start demo
14
+
15
+
## Steps in detail
16
+
17
+
1. Make sure containers are closed
18
+
19
+
```
20
+
docker-compose down # to make sure containers are closed
21
+
docker image ls # find image names that need to be removed in next step
22
+
docker image rm getting-started
23
+
docker image rm indy_pool
24
+
docker volume ls # find volume name that needs to be removed in next step
25
+
docker volume rm gettingstarted_sandbox
26
+
```
27
+
28
+
2. Reset source files
29
+
30
+
```git tag # choose the latest version and use it as <branch_name>
31
+
git checkout <branch_name>
32
+
git reset --hard **WARNING** : make copies of any changes you want to keep prior to taking this step
33
+
git fetch --all
34
+
git pull
35
+
```
36
+
37
+
3. Perform a new build
38
+
39
+
```
40
+
docker-compose build --no-cache # adding no cache to make clean build
0 commit comments