github.com/diadata-org/diadata@v1.4.593/deployments/docker-compose.ratescrapers.yml (about) 1 version: '3.2' 2 services: 3 4 sofr-scraper: 5 depends_on: [ratescraper] 6 image: ${DOCKER_HUB_LOGIN}/${STACKNAME}_ratescraper:latest 7 command: /bin/ratescrapers -type SOFR 8 networks: 9 - influxdb-network 10 - redis-network 11 logging: 12 options: 13 max-size: "50m" 14 environment: 15 - EXEC_MODE=production 16 17 safr-scraper: 18 depends_on: [ratescraper] 19 image: ${DOCKER_HUB_LOGIN}/${STACKNAME}_ratescraper:latest 20 command: /bin/ratescrapers -type SAFR 21 networks: 22 - influxdb-network 23 - redis-network 24 logging: 25 options: 26 max-size: "50m" 27 environment: 28 - EXEC_MODE=production 29 30 safrAvgs-scraper: 31 depends_on: [ratescraper] 32 image: ${DOCKER_HUB_LOGIN}/${STACKNAME}_ratescraper:latest 33 command: /bin/ratescrapers -type SAFR-AVGS 34 networks: 35 - influxdb-network 36 - redis-network 37 logging: 38 options: 39 max-size: "50m" 40 environment: 41 - EXEC_MODE=production 42 43 ester-scraper: 44 depends_on: [ratescraper] 45 image: ${DOCKER_HUB_LOGIN}/${STACKNAME}_ratescraper:latest 46 command: /bin/ratescrapers -type ESTER 47 networks: 48 - influxdb-network 49 - redis-network 50 logging: 51 options: 52 max-size: "50m" 53 environment: 54 - EXEC_MODE=production 55 56 sonia-scraper: 57 depends_on: [ratescraper] 58 image: ${DOCKER_HUB_LOGIN}/${STACKNAME}_ratescraper:latest 59 command: /bin/ratescrapers -type SONIA 60 networks: 61 - influxdb-network 62 - redis-network 63 logging: 64 options: 65 max-size: "50m" 66 environment: 67 - EXEC_MODE=production 68 69 ratescraper: 70 build: 71 context: ../../../.. 72 dockerfile: github.com/diadata-org/diadata/build/Dockerfile-ratescraper 73 image: ${DOCKER_HUB_LOGIN}/${STACKNAME}_ratescraper:latest 74 restart: "no" 75 networks: 76 - influxdb-network 77 - redis-network 78 logging: 79 options: 80 max-size: "50m" 81 environment: 82 - EXEC_MODE=production 83 84 networks: 85 influxdb-network: 86 external: 87 name: influxdb_influxdb-network 88 redis-network: 89 external: 90 name: redis_redis-network