有没有人让分类帐在Docker中工作?
-
-
作为后续,我可以确认ledgerblue的安装过程是从容器内部进行的,仍然发生同样的致命错误,也与连接了tezos-signer list的分类账相同.还尝试了在容器内重建tezos-没有这种运气As a followup I can confirm that the ledgerblue install process works from inside the container Still getting same Fatal Error, also with `tezos-signer list connected ledgers` . Also tried a rebuild of tezos inside the container - no such luck
- 0
- 2019-02-15
- asbjornenge
-
1 个回答
- 投票数
-
- 2019-02-20
已解决
参考 https://gitlab.com/tezos/tezos/issues/475
显然,需要设置 USER env变量才能使其起作用.默认情况下,官方docker映像中未设置该变量.
我正在努力让他们进行设置
SOLVED
Ref. https://gitlab.com/tezos/tezos/issues/475
Apparently the USER env variabled needs to be set for it to work It is not set by default in official docker images.
I'm reaching out to have them set it
-
精确地,在dockerfile中设置" ENV USER=tezos"或使用" docker run ... -e USER='tezos'...".Precisely, set "ENV USER=tezos" in dockerfile or use "docker run... -e USER='tezos' ...".
- 1
- 2019-08-06
- Phlogi
-
另外,使用" --privileged"选项运行容器时,不需要其他卷.完整的工作命令供参考: " docker run --rm --privileged --nametzdocker -it -v/tzdata:/var/run/tezos/nodetezos/tezos:mainnettezos-node ..." #检查分类帐附件: " dockerexec -ittzdockertezos-client-本地主机列表连接的分类帐"Also the additional volumes are not needed when you run the container with the "--privileged" option. Full working command for reference: "docker run --rm --privileged --name tzdocker -it -v /tzdata:/var/run/tezos/node tezos/tezos:mainnet tezos-node ..." # check ledger attachment: "docker exec -it tzdocker tezos-client -A localhost list connected ledgers"
- 0
- 2019-08-07
- Phlogi
尝试使用来自Docker容器的分类帐时遇到一个奇怪的错误.
有人能解决这个问题吗?或者知道可能是什么问题吗?
账本通过Tezos钱包应用1.5.0运行最新固件.使用Tezbox钱包时,分类帐也可以正常工作.
my-node
正在另一台计算机上运行,不知道这是否/如何与之相关♂