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
After `docker-compose up -d`, two services named `yosemited` and `keyos` will be started. The yosemited service would expose ports 8888 and 9876 to the host. The keyos service does not expose any port to the host, it is only accessible to infra-cli when running infra-cli is running inside the keyos container as described in "Execute infra-cli commands" section.
69
+
After `docker-compose up -d`, two services named `yosemited` and `infra-keystore` will be started. The yosemited service would expose ports 8888 and 9876 to the host. The infra-keystore service does not expose any port to the host, it is only accessible to infra-cli when running infra-cli is running inside the infra-keystore container as described in "Execute infra-cli commands" section.
70
70
71
71
### Execute infra-cli commands
72
72
73
73
You can run the `infra-cli` commands via a bash alias.
74
74
75
75
```bash
76
-
alias infra-cli='docker-compose exec keyos /opt/yosemite/bin/infra-cli -u http://yosemited:8888 --wallet-url http://localhost:8900'
76
+
alias infra-cli='docker-compose exec infra-keystore /opt/yosemite/bin/infra-cli -u http://yosemited:8888 --wallet-url http://localhost:8900'
77
77
infra-cli get info
78
78
infra-cli get account inita
79
79
```
80
80
81
-
If you don't need keyos afterwards, you can stop the keyos service using
81
+
If you don't need infra-keystore afterwards, you can stop the infra-keystore service using
82
82
83
83
```bash
84
-
docker-compose stop keyos
84
+
docker-compose stop infra-keystore
85
85
```
86
86
87
87
### Change default configuration
@@ -111,7 +111,7 @@ The data volume created by docker-compose can be deleted as follows:
# Limits the maximum time (in milliseconds) that is allowd for sending blocks to a keosd provider for signing (eosio::producer_plugin)
146
-
keyos-provider-timeout = 5
145
+
# Limits the maximum time (in milliseconds) that is allowd for sending blocks to a keystore provider for signing (eosio::producer_plugin)
146
+
keystore-provider-timeout = 5
147
147
148
148
# Lag in number of blocks from the head block when selecting the reference block for transactions (-1 means Last Irreversible Block) (eosio::txn_test_gen_plugin)
0 commit comments