Skip to content

Commit

Permalink
chore: Use docker images that also run on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
holzeis committed Jan 30, 2024
1 parent f29c21d commit 4092f0f
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.4"
services:
### BITCOIND
bitcoind:
image: ruimarinho/bitcoin-core:0.20.0
image: ghcr.io/vulpemventures/bitcoin:latest
container_name: bitcoin-node
command: |
-conf=/config/default.conf
Expand All @@ -16,9 +16,20 @@ services:
- bitcoind-data:/home/bitcoin/.bitcoin
- ./testconfig/config:/config
electrs:
image: cryptogarageinc/electrs:v0.4.8-bitcoin
command: |
sh -c "electrs -vv --daemon-rpc-addr bitcoind:18443 --daemon-dir /home/bitcoin/.bitcoin --network regtest --http-addr 0.0.0.0:3004"
image: ghcr.io/vulpemventures/electrs:latest
container_name: electrs
entrypoint:
- /build/electrs
command:
- -vv
- --daemon-rpc-addr
- bitcoind:18443
- --daemon-dir
- /home/bitcoin/.bitcoin
- --network
- regtest
- --http-addr
- 0.0.0.0:3004
volumes:
- bitcoind-data:/home/bitcoin/.bitcoin
ports:
Expand Down

0 comments on commit 4092f0f

Please sign in to comment.