Skip to content

Commit

Permalink
Try to fix bitcoind on testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
koirikivi committed Apr 27, 2024
1 parent ec771dd commit 20e4571
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docker/bitcoind/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ FROM ubuntu:latest
VOLUME ["/home/bitcoin/.bitcoin"]
WORKDIR /home/bitcoin

ARG GROUP_ID=1000
ARG USER_ID=1000
RUN groupadd -g ${GROUP_ID} bitcoin \
&& useradd -u ${USER_ID} -g bitcoin -d /bitcoin bitcoin

COPY --from=builder /opt/ /opt/

RUN apt update \
Expand Down

0 comments on commit 20e4571

Please sign in to comment.