From ebf56e9190ef89d7abaa617bae862b082445cbe2 Mon Sep 17 00:00:00 2001 From: Grigory Efimov Date: Mon, 15 Jan 2024 16:58:17 -0300 Subject: [PATCH] fixed redis-servr data dir and fixed s3 emulator dns name --- docker-compose.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 297d6de..f0563da 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -33,7 +33,7 @@ services: container_name: redis image: "redis/redis-stack-server:${REDIS_VERSION}" restart: always - command: redis-server --appendonly yes --maxmemory 256mb --maxmemory-policy noeviction --protected-mode no --loadmodule /opt/redis-stack/lib/redisbloom.so + command: redis-server --dir /data/ --appendonly yes --maxmemory 256mb --maxmemory-policy noeviction --protected-mode no --loadmodule /opt/redis-stack/lib/redisbloom.so ports: - "${REDIS_PORT}:${REDIS_PORT}" volumes: @@ -45,6 +45,10 @@ services: - "${AWS_PORT}:4569" volumes: - ./storage/s3_root:/s3_root + networks: + default: + aliases: + - s3-emulator.s3-emulator any-sync-coordinator_bootstrap: image: "ghcr.io/anyproto/any-sync-coordinator:${ANY_SYNC_COORDINATOR_VERSION}"