You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
699 B

version: "3.2"
services:
indexer:
image: "samouraiwallet/dojo-indexer:${DOJO_INDEXER_VERSION_TAG}"
container_name: indexer
build:
context: ./indexer
env_file:
- ./.env
- ./conf/docker-common.conf
- ./conf/docker-bitcoind.conf
- ./conf/docker-indexer.conf
restart: on-failure
command: "/wait-for-it.sh tor:9050 --timeout=360 --strict -- /restart.sh"
expose:
- "50001"
volumes:
- data-indexer:/home/indexer
logging:
driver: "json-file"
options:
max-size: "20m"
max-file: "10"
depends_on:
- tor
networks:
dojonet:
ipv4_address: 172.28.1.6
volumes:
data-indexer: