Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM alpine as binary

ARG VERSION=0.18.0
ARG VERSION=0.18.1

ENV FILENAME bitcoin-${VERSION}-x86_64-linux-gnu.tar.gz
ENV DOWNLOAD_URL https://bitcoin.org/bin/bitcoin-core-${VERSION}/${FILENAME}
ENV SHA256SUM 5146ac5310133fbb01439666131588006543ab5364435b748ddfc95a8cb8d63f
ENV SHA256SUM 600d1db5e751fa85903e935a01a74f5cc57e1e7473c15fd3e17ed21e202cfe5a

ADD $DOWNLOAD_URL /$FILENAME
RUN if [ x"$( sha256sum /${FILENAME} | awk '{print $1}' )" != x"${SHA256SUM}" ]; then \
Expand All @@ -18,7 +18,7 @@ RUN if [ x"$( sha256sum /${FILENAME} | awk '{print $1}' )" != x"${SHA256SUM}" ];

FROM alpine AS final

ARG GLIBC_VERSION=2.29-r0
ARG GLIBC_VERSION=2.30-r0

RUN apk update \
&& apk --no-cache add wget bash ca-certificates \
Expand Down
32 changes: 15 additions & 17 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,40 @@
{
"name": "bitcoin.dnp.dappnode.eth",
"version": "0.1.2",
"description": "The Bitcoin Core daemon (0.18.0). Bitcoind is a program that implements the Bitcoin protocol for remote procedure call (RPC) use.",
"version": "0.1.4",
"upstreamVersion": "0.18.1",
"shortDescription": "Support the Bitcoin network, run your own node",
"description": "The Bitcoin Core daemon (0.18.1). Bitcoind is a program that implements the Bitcoin protocol for remote procedure call (RPC) use.",
"avatar": "/ipfs/QmNrfF93ppvjDGeabQH8H8eeCDLci2F8fptkvj94WN78pt",
"type": "service",
"image": {
"path": "",
"hash": "",
"size": "",
"ports": [
"8333:8333"
],
"volumes": [
"bitcoin_data:/root/.bitcoin"
],
"path": "bitcoin.dnp.dappnode.eth_0.1.4.tar.xz",
"hash": "/ipfs/QmTTxK66nEwisbMcojV4njjmGaG2diRZeKDdYw9vHWty4N",
"size": 9386518,
"restart": "always",
"ports": ["8333:8333"],
"volumes": ["bitcoin_data:/root/.bitcoin"],
"environment": [
"BTC_RPCUSER=dappnode",
"BTC_RPCPASSWORD=dappnode",
"BTC_TXINDEX=1",
"BTC_PRUNE=0"
]
},
"chain": "bitcoin",
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"contributors": [
"Abel Boldú (@vdo)",
"Eduardo Antuña <eduadiez@gmail.com> (https://github.com/eduadiez)",
"Loco del Bitcoin <ellocodelbitcoin@gmail.com>"
],
"keywords": [
"bitcoin",
"btc"
],
"homepage": {
"categories": ["Blockchain"],
"keywords": ["bitcoin", "btc"],
"links": {
"homepage": "https://github.com/dappnode/DAppNodePackage-bitcoin#readme"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dappnode/DAppNodePackage-bitcoin.git"
"url": "https://github.com/dappnode/DAppNodePackage-bitcoin.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-bitcoin/issues"
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
version: '3.4'
services:
bitcoin.dnp.dappnode.eth:
image: 'bitcoin.dnp.dappnode.eth:0.1.2'
image: 'bitcoin.dnp.dappnode.eth:0.1.4'
build: ./build
volumes:
- 'bitcoin_data:/root/.bitcoin'
ports:
- '8333:8333'
environment:
- "BTC_RPCUSER=dappnode"
- "BTC_RPCPASSWORD=dappnode"
- "BTC_TXINDEX=1"
- "BTC_PRUNE=0"
- BTC_RPCUSER=dappnode
- BTC_RPCPASSWORD=dappnode
- BTC_TXINDEX=1
- BTC_PRUNE=0
volumes:
bitcoin_data: {}