From 9973ac5dbdca63335f0beffb8814fb999e1c5ea6 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Sun, 26 Feb 2023 09:10:29 +0100 Subject: [PATCH] add drpc to the mix --- drpc.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 drpc.yml diff --git a/drpc.yml b/drpc.yml new file mode 100644 index 00000000..1da6f307 --- /dev/null +++ b/drpc.yml @@ -0,0 +1,26 @@ +version: '3.1' +services: + dshackle: + image: drpcorg/dshackle:0.26.0-SNAPSHOT + restart: unless-stopped + volumes: + - ./main_configs:/etc/dshackle + ports: +# - "8080:8080" + - "8081:8081" +# - "8082:8082" + - "2449:2449" + label: + - "prometheus-scrape.enabled=true" + - "prometheus-scrape.port=8081" + - "prometheus-scrape.job_name=drpc-dshackle" + - "prometheus-scrape.metrics_path=/metrics" + + redis: + image: healthcheck/redis:alpine + restart: unless-stopped + command: + - "redis-server" + - "--maxmemory ${REDIS_RAM}" + - "--maxmemory-policy allkeys-lru" + - '--save ""'