前提・実現したいこと
1.コンテナPHPからコンテナBitcoin−Coreに対し、リクエストを送り、Getinfo等の値を取得したい。
2.コンテナBitcoin−Coreが起動時にbitcoind -daemonが動くようにしたい。(別スレッドを建てるため、ここには詳細に記さない)
発生している問題・エラーメッセージ
PHP側から以下のコマンドを打った所、下記のエラーが発生した。
本来であればエラーではなく、何らかのメッセージが帰ってくることを想定している。
curl -v --user alice:test --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getblockchaininfo", "params": [] }' -H 'content-type: text/plain;' bitcoin-core:18444/ * Trying 172.20.0.3:18444... * Connected to bitcoin-core (172.20.0.3) port 18444 (#0) * Server auth using Basic with user 'alice' > POST / HTTP/1.1 > Host: bitcoin-core:18444 > Authorization: Basic YWxpY2U6dGVzdA== > User-Agent: curl/7.74.0 > Accept: */* > content-type: text/plain; > Content-Length: 81 > * upload completely sent off: 81 out of 81 bytes * Empty reply from server * Connection #0 to host bitcoin-core left intact curl: (52) Empty reply from server
該当のソースコード
docker-compose.yml
version: '3.8' services: php: build: ./php volumes: - ./htdocs:/var/www/html - ./library:/var/www/library restart: always bitcoin-core: image: ruimarinho/bitcoin-core ports: - 18444:18444 volumes: - ./bitcoin-core/bitcoin.conf:/home/bitcoin/.bitcoin/bitcoin.conf command: -printtoconsole -regtest=1 volumes: bitcoin-db-data:
bitcoin.conf
rpcuser=alice rpcpassword=test
試したこと
Bitcoin daemon sends "Empty reply from server" when in test net: StackExchange
password, userが誤っているのかと思い、上記の記事を参考にパスワード等を利用しない方法でもCurlを打ってみたがエラーの内容は変わらなかった。
再起動等は試した。
bitcoin-coreのCLIからcurlを打ってみたがエラー内容は変わらない。
その他・詳細
dockerの起動は下記のコマンド
docker-compose up -d
PHPのCLIに入るのはDocker Desktop for macで行っている(GUI)
起動時にbitcoind -daemon
が動いていないので、一度Bitcoin−Coreコンテナに入り、bitcoind -daemon
を打ってからPHPのCLIに入ってcurlを打ってる。
あなたの回答
tips
プレビュー