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
Adding your donation address to the lighwalletd config:
31
+
* in docker-compose.yml about line 53 you'll see:
32
+
```
33
+
--donation-address==u14...
34
+
```
35
+
Change that to your unified sheilded address.
36
+
Then bring up the docker container.
37
+
38
+
```
39
+
docker compose -f docker-compose.yml up
29
40
```
30
41
31
42
To run deattached in the background even if ssh connection drops:
32
43
```
33
-
docker compose -f docker-compose.zaino.yml up --detach
44
+
docker compose -f docker-compose.yml up --detach
34
45
```
35
46
To stop the system, but with removing the volumes that get created.
36
47
```
37
-
docker compose -f docker-compose.zaino.yml down
48
+
docker compose -f docker-compose.yml down
38
49
```
39
50
40
51
## Troubleshooting and Docker Down
41
52
As happens in life, there are often troubles and times when a clean start is desired. Here are some helpful debugging options for stopping the Docker continers.
42
53
43
54
Stop and remove all containers, networks, and volumes for this project
44
55
```
45
-
docker compose -f docker-compose.zaino.yml down -v --remove-orphans
56
+
docker compose -f docker-compose.yml down -v --remove-orphans
46
57
```
47
58
48
59
Remove all unused containers, networks, images, and volumes
@@ -67,7 +78,7 @@ systemctl restart docker
67
78
68
79
All together now! Hard removal of everything.
69
80
```
70
-
docker compose -f docker-compose.zaino.yml down -v --remove-orphans && docker system prune -a --volumes -f && docker volume prune -f && docker network prune -f
81
+
docker compose -f docker-compose.yml down -v --remove-orphans && docker system prune -a --volumes -f && docker volume prune -f && docker network prune -f
0 commit comments