通过docker快速安装构建EOSIO开发环境
4645979
发表于 2022-11-12 14:09:06
145
0
0
Docker: Docker管理服务。Docker旨在通过使开发人员在容器内很方便的创建完全配置的系统环境来简化应用程序部署。系统环境包括在配置好的操作系统中运行各种目标应用程序,这些目标应用程序提供你的应用程序需要的所有运行时支持。开发人员在容器内创建所需的系统配置,然后在打包容器进行分发。1 s- A5 p+ B9 |4 u+ A& h8 b
1.获取镜像+ T- r- [; N7 K/ _# ]: L3 A
EOSIO Dev docker镜像是为本地开发而设计的EOSIO软件的编译版本。2 C5 G& A1 g" `, z
从存储库中提取镜像:
docker pull eosio/eos-dev
开启EOSIO节点: r- O. ~2 Q2 w+ m3 C3 q1 j
docker run --rm --name eosio -d -p 8888:8888 -p 9876:9876 -v /tmp/work:/work -v /tmp/eosio/data:/mnt/dev/data -v /tmp/eosio/config:/mnt/dev/config eosio/eos-dev /bin/bash -c "nodeos -e -p eosio --plugin eosio::wallet_api_plugin --plugin eosio::wallet_plugin --plugin eosio::producer_plugin --plugin eosio::history_plugin --plugin eosio::chain_api_plugin --plugin eosio::history_api_plugin --plugin eosio::http_plugin -d /mnt/dev/data --config-dir /mnt/dev/config --http-server-address=0.0.0.0:8888 --access-control-allow-origin=* --contracts-console --http-validate-host=false"
检查它的工作情况:
docker logs --tail 10 eosio. R4 ]$ ~) B2 {4 g
输出应该类似这样:
1929001ms thread-0 producer_plugin.cpp:585 block_production_loo ] Produced block 0000366974ce4e2a... #13929 @ 2018-05-23T16:32:09.000 signed by eosio [trxs: 0, lib: 13928, confirmed: 0]
1929502ms thread-0 producer_plugin.cpp:585 block_production_loo ] Produced block 0000366aea085023... #13930 @ 2018-05-23T16:32:09.500 signed by eosio [trxs: 0, lib: 13929, confirmed: 0]2 k" l. W+ g) X2 p. J! I
1930002ms thread-0 producer_plugin.cpp:585 block_production_loo ] Produced block 0000366b7f074fdd... #13931 @ 2018-05-23T16:32:10.000 signed by eosio [trxs: 0, lib: 13930, confirmed: 0]
1930501ms thread-0 producer_plugin.cpp:585 block_production_loo ] Produced block 0000366cd8222adb... #13932 @ 2018-05-23T16:32:10.500 signed by eosio [trxs: 0, lib: 13931, confirmed: 0]
1931002ms thread-0 producer_plugin.cpp:585 block_production_loo ] Produced block 0000366d5c1ec38d... #13933 @ 2018-05-23T16:32:11.000 signed by eosio [trxs: 0, lib: 13932, confirmed: 0]* V( D9 z8 u) D, d* U
1931501ms thread-0 producer_plugin.cpp:585 block_production_loo ] Produced block 0000366e45c1f235... #13934 @ 2018-05-23T16:32:11.500 signed by eosio [trxs: 0, lib: 13933, confirmed: 0]
1932001ms thread-0 producer_plugin.cpp:585 block_production_loo ] Produced block 0000366f98adb324... #13935 @ 2018-05-23T16:32:12.000 signed by eosio [trxs: 0, lib: 13934, confirmed: 0]
1932501ms thread-0 producer_plugin.cpp:585 block_production_loo ] Produced block 00003670a0f01daa... #13936 @ 2018-05-23T16:32:12.500 signed by eosio [trxs: 0, lib: 13935, confirmed: 0]
1933001ms thread-0 producer_plugin.cpp:585 block_production_loo ] Produced block 00003671e8b36e1e... #13937 @ 2018-05-23T16:32:13.000 signed by eosio [trxs: 0, lib: 13936, confirmed: 0]
1933501ms thread-0 producer_plugin.cpp:585 block_production_loo ] Produced block 0000367257fe1623... #13938 @ 2018-05-23T16:32:13.500 signed by eosio [trxs: 0, lib: 13937, confirmed: 0]
恭喜!你有一个非常简单的单节点区块链运行在你的docker中!
也可以通过浏览器中的这个地址来检查RPC接口是否工作:% ]4 T6 p8 w: M( [& j" F
http://localhost:8888/v1/chain/get_info
你应该看到类似的信息:
{
"server_version": "0961a560",
"chain_id": "cf057bbfb72640471fd910bcb67639c22df9f92470936cddc1ade0e2f2e7dc4f",7 \' ?0 X5 d$ F' M2 N; |- x
"head_block_num": 13780," ?2 j6 [7 `2 S8 \ s- w
"last_irreversible_block_num": 13779,
"last_irreversible_block_id": "000035d36e1ca29ba378081c574ab3b5ab4214ba29754dd42b512690a9f03e80",: e i" T/ v0 _# A
"head_block_id": "000035d4165c9225d7a04822d142fbcb15f997a6f2571dc7bae8437dea782205",! ~. r C5 R; N0 ~" a
"head_block_time": "2018-05-23T16:30:54",3 c7 }6 }1 K5 f) h- C
"head_block_producer": "eosio",
"virtual_block_cpu_limit": 100000000,
"virtual_block_net_limit": 1048576000,' A' c+ V- b. ]$ U: h
"block_cpu_limit": 99900,
"block_net_limit": 1048576
}
2.Cleos别名2 l# b/ a5 C; _; Q$ i
cleos是一个命令行接口,负责与区块链交互并管理钱包。
为了方便起见,我们将创建一个bash别名,用于运行在容器中的cleos。在终端,运行:
alias cleos='docker exec -it eosio /opt/eosio/bin/cleos -u http://0.0.0.0:8888 --wallet-url http://0.0.0.0:8888'
3.确认是否安装成功
现在试着在你的终端中运行cleos --help。你应该看到一个输出:. S6 F+ Z% N5 _; E
Command Line Interface to EOSIO Client
Usage: /opt/eosio/bin/cleos [OPTIONS] SUBCOMMAND" c9 l2 T: i' i7 c! E
Options:
-h,--help Print this help message and exit) J) ?; e* V3 W/ \& e
-u,--url TEXT=http://localhost:8888/
the http/https URL where nodeos is running
--wallet-url TEXT=http://localhost:8900/, B5 Z8 L" C6 b" r5 G0 g
the http/https URL where keosd is running- I# j8 X! r7 L5 ?4 q6 e
-r,--header pass specific HTTP header; repeat this option to pass multiple headers
-n,--no-verify don't verify peer certificate when using HTTPS
-v,--verbose output verbose actions on error& f- v: t+ C: Z* Q
Subcommands:
version Retrieve version information. G; e) z B6 S8 G
create Create various items, on and off the blockchain' w" e* I7 U1 Z6 W0 b/ o0 i
get Retrieve various items and information from the blockchain: R9 s9 V4 f) M( H
set Set or update blockchain state
transfer Transfer EOS from account to account4 h# y! Q+ j, y% t: i8 j6 b
net Interact with local p2p network connections
wallet Interact with local wallet& X3 `, @* j+ K; h
sign Sign a transaction; D1 |& K. T) v& V" {) I- C
push Push arbitrary transactions to the blockchain$ S9 Q0 D9 Q- g: T K
multisig Multisig contract commands
system Send eosio.system contract action to the blockchain.- E8 o7 R$ n, I o8 |
令人惊叹的!我们跑起来了。
停止EOSIO容器+ R3 d" c" T/ o
当需要停止时,请使用:# V" }1 E3 v/ {
bash docker stop eosio; p6 ?* m+ a2 Z
另:**《EOS智能合约与DApp开发入门》**教程已经上线,欢迎大家关注:5 D' Q9 c+ P% o, H: p+ u
EOS教程8 ?0 L6 x/ g8 v
本教程帮助你快速入门EOS区块链去中心化应用的开发,内容涵盖EOS工具链、账户与钱包、发行代币、智能合约开发与部署、使用代码与智能合约交互等核心知识点,最后综合运用React和EOS的各知识点完成一个便签DApp的开发。% z$ K9 v/ v# \
原文
成为第一个吐槽的人