fix: change back 0.0.0.0 to 127.0.0.1 because you are creating a docker network anyway

This commit is contained in:
nikhilmantri0902 2025-08-14 11:41:13 +05:30
parent bde0aba691
commit 37186e6a51

View File

@ -23,6 +23,8 @@ services:
retries: 3 retries: 3
depends_on: depends_on:
- zookeeper - zookeeper
networks:
- signoz-dev-network
zookeeper: zookeeper:
image: bitnami/zookeeper:3.7.1 image: bitnami/zookeeper:3.7.1
container_name: zookeeper container_name: zookeeper
@ -30,6 +32,8 @@ services:
- ${PWD}/fs/tmp/zookeeper:/bitnami/zookeeper - ${PWD}/fs/tmp/zookeeper:/bitnami/zookeeper
ports: ports:
- '127.0.0.1:2181:2181' - '127.0.0.1:2181:2181'
networks:
- signoz-dev-network
environment: environment:
- ALLOW_ANONYMOUS_LOGIN=yes - ALLOW_ANONYMOUS_LOGIN=yes
healthcheck: healthcheck:
@ -52,6 +56,8 @@ services:
clickhouse: clickhouse:
condition: service_healthy condition: service_healthy
restart: on-failure restart: on-failure
networks:
- signoz-dev-network
schema-migrator-async: schema-migrator-async:
image: signoz/signoz-schema-migrator:v0.129.0 image: signoz/signoz-schema-migrator:v0.129.0
container_name: schema-migrator-async container_name: schema-migrator-async
@ -67,3 +73,9 @@ services:
schema-migrator-sync: schema-migrator-sync:
condition: service_completed_successfully condition: service_completed_successfully
restart: on-failure restart: on-failure
networks:
- signoz-dev-network
networks:
signoz-dev-network:
external: true