updated to bitcoin core master 20190918
This commit is contained in:
parent
6b6b3e9f0b
commit
eecbe3e417
19
Dockerfile
19
Dockerfile
|
@ -1,15 +1,11 @@
|
||||||
FROM phusion/baseimage:0.9.19
|
FROM phusion/baseimage:0.11
|
||||||
|
|
||||||
ENV BITCOIND_REV master
|
ARG BITCOIND_REV=master
|
||||||
|
|
||||||
ARG UBUNTU_MIRROR=mirror://mirrors.ubuntu.com/mirrors.txt
|
ARG UBUNTU_MIRROR=mirror://mirrors.ubuntu.com/mirrors.txt
|
||||||
ARG BITCOIN_REPO=https://github.com/bitcoin/bitcoin.git
|
ARG BITCOIN_REPO=https://github.com/bitcoin/bitcoin.git
|
||||||
|
|
||||||
RUN sed -i \
|
ADD ./sources.list /etc/apt/sources.list
|
||||||
-e s#http://archive.ubuntu.com/ubuntu/#${UBUNTU_MIRROR}#g \
|
|
||||||
-e s#http://security.ubuntu.com/ubuntu/#${UBUNTU_MIRROR}#g \
|
|
||||||
/etc/apt/sources.list ; \
|
|
||||||
cat /etc/apt/sources.list
|
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
|
@ -42,7 +38,7 @@ RUN \
|
||||||
git checkout $BITCOIND_REV && \
|
git checkout $BITCOIND_REV && \
|
||||||
./autogen.sh && \
|
./autogen.sh && \
|
||||||
./configure --disable-wallet --enable-hardening && \
|
./configure --disable-wallet --enable-hardening && \
|
||||||
make -j2 && \
|
make -j$(nproc --all) && \
|
||||||
make install && \
|
make install && \
|
||||||
cd / && \
|
cd / && \
|
||||||
rm -rf /usr/local/src/bitcoin
|
rm -rf /usr/local/src/bitcoin
|
||||||
|
@ -72,9 +68,4 @@ EXPOSE 8333
|
||||||
|
|
||||||
RUN mkdir -p /etc/service/bitcoind
|
RUN mkdir -p /etc/service/bitcoind
|
||||||
ADD bitcoind.run /etc/service/bitcoind/run
|
ADD bitcoind.run /etc/service/bitcoind/run
|
||||||
|
RUN chmod +x /etc/service/bitcoind/run
|
||||||
RUN mkdir -p /etc/service/bitcoind/log
|
|
||||||
ADD bitcoind.log.run /etc/service/bitcoind/log/run
|
|
||||||
|
|
||||||
RUN chmod +x /etc/service/bitcoind/log/run \
|
|
||||||
/etc/service/bitcoind/run
|
|
||||||
|
|
|
@ -1,5 +1,13 @@
|
||||||
# sneak/bitcoind docker image
|
# sneak/bitcoind docker image
|
||||||
|
|
||||||
|
```
|
||||||
|
__ _ __ _ __
|
||||||
|
/ /_ (_) /__________ (_)___ ____/ /
|
||||||
|
/ __ \/ / __/ ___/ __ \/ / __ \/ __ /
|
||||||
|
/ /_/ / / /_/ /__/ /_/ / / / / / /_/ /
|
||||||
|
/_.___/_/\__/\___/\____/_/_/ /_/\__,_/
|
||||||
|
```
|
||||||
|
|
||||||
* supports zmq
|
* supports zmq
|
||||||
* wallet support disabled
|
* wallet support disabled
|
||||||
|
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
exec chpst -usyslog logger -t bitcoind
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
deb mirror://mirrors.ubuntu.com/mirrors.txt bionic main universe multiverse restricted
|
||||||
|
deb mirror://mirrors.ubuntu.com/mirrors.txt bionic-updates main universe multiverse restricted
|
||||||
|
deb mirror://mirrors.ubuntu.com/mirrors.txt bionic-security main universe multiverse restricted
|
||||||
|
deb mirror://mirrors.ubuntu.com/mirrors.txt bionic-backports main universe multiverse restricted
|
Loading…
Reference in New Issue