メインネットでベイクするためのDockerとローカルビルド?
3 回答
- 投票
-
- 2019-02-22
dockerビルドは通常、ソフトウェアのコンパイルに慣れていない、またはコンパイルの経験がない個人を対象としています.Dockerビルドを実行するよりも、自分でコンパイルするよりも利点はありません.コードは同じです.Dockerビルドは、実際にコア開発者によってサポートされています.コアコードが新しくリリースされるたびに、Dockerイメージも更新されます.Dockerビルドを利用すると、ベイクする場合にすべての個別のイメージを連携させる上で追加の課題が発生します.ノードを実行したいだけの場合、dockerメソッドはすばやく簡単です.ただし、ベイクしたい場合は、dockerによってさらに複雑になる可能性があります.
The docker builds are generally aimed at those individuals who are not comfortable with, or have no experience in compiling software. There is no advantage over running docker builds vs compile on your own; the code is the same. The docker builds are indeed supported by the core devs. With each new release of the core code, the docker images are also updated. Utilizing the docker builds does present additional challenges in getting all the separate images working together if you intend to bake. If you just want to run a node, the docker method is quick and simple. If you want to bake, however, docker may introduce additional complexity.
-
ソースから20を超えるノードを構築している人、およびunixシェルに習熟している人として、私はノードを構築するために、主にその正常なメンテナンスの側面のために、dockerメソッドを非常に好みます.utdrmacが指摘したように、彼が述べた理由から、プライベートベーキングノードはおそらくこのルールの唯一の例外です.just to note that as someone who has build over 20 nodes from source and someone who is proficient with unix shells, I still much prefer docker method for building out nodes, mostly for the sane maintenance aspects of it. As utdrmac pointed out, private baking node is probably the only exception to this rule for the reasons he stated.
- 1
- 2019-03-09
- Frank
-
- 2019-02-22
もちろん、Dockerを使用するとノードの構築が容易になり、Linuxでのプログラミングの初期レベルの知識がある人に役立ちます.実際、Dockerを介してベイク処理するノードを構築すると、理解しにくいエラーが発生する可能性があります.
このマニュアルに規定されている手順でノードを収集することをお勧めします. Of course the use of the Docker makes it easier to build a node, and it is useful for people with an initial level of knowledge of programming on Linux. The fact is that when you build a node for baking through the Docker, you may encounter errors that will not be easy enough to understand. I advise you to collect the node by the steps prescribed in this manual.
-
- 2019-03-09
dockerを試しましたが、ヘッド/ロジックを追跡できませんでした.はい、起動できましたが、その後.....何が起こっているのかわかりません.ソースからコンパイルして実行することは私にとって完璧に機能し、最初から物事がどのように機能するかを学ぶこともできました.
また、ソースから構築するパン屋が利用できる支援ツールの量も急速に増加しています.
I tried docker and could not get my head/logic to follow it, yes i could launch it but then..... dono what is happening. compiling and running it from source has worked flawlessly for me also allowed me to learn how things worked from the get go.
also the amount of helping tools available to bakers who build from source is growing fast also.
-
あなたはあなたの答えをより具体的にしようと試みることができますか?コメントから実際に情報を抽出するのは難しいです.ありがとう!could you try to be more specific in your answer please ? it's hard to actually extract information from your comments. thanks!
- 0
- 2019-03-10
- Ezy
メインネットでdockerを使用してベーキング操作を設定するのが難しい場合があるようです.
私の質問は2つあります
1)Dockerは、ローカルマシンでの実際のビルドと比較して、原則としていくつかの利点を提供しますか?
2)Dockerビルドは、単純なストレートビルドと同じくらいサポートされていますか、それとも全体的な付加価値が不明確なほど多くの追加の複雑さを引き起こしていますか?(問題の例:アクセス制御の管理、元帳との接続など...)