version: '3.2'
services:
bitcoind:
image: registry.gitlab.com/hashbeam/docker/bitcoind:25.0
command: "-fallbackfee=0.0002"
volumes:
- ./tmp/bitcoin:/srv/app/.bitcoin
electrs:
image: registry.gitlab.com/hashbeam/docker/electrs:0.9.14
volumes:
- ./tmp/electrs:/srv/app/db
ports:
- 50001:50001
depends_on:
- bitcoind
electrs-2:
image: registry.gitlab.com/hashbeam/docker/electrs:0.9.14
ports:
- 50002:50001
depends_on:
- bitcoind
proxy:
image: ghcr.io/grunch/rgb-proxy-server:0.2.0
ports:
- 3000:3000
proxy-mod-proto:
image: ghcr.io/grunch/rgb-proxy-server:0.1.0
ports:
- 3001:3000
proxy-mod-api:
build:
context: ./rgb-proxy-server
dockerfile: ./Dockerfile.modified-api
image: rgb-proxy-server:modified-api
ports:
- 3002:3000