This is an automated email from the ASF dual-hosted git repository.

monkeydluffy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-docker.git


The following commit(s) were added to refs/heads/master by this push:
     new 915c187  fix: update ETCD_ADVERTISE_CLIENT_URLS from 0.0.0.0 to FQDN 
(#533)
915c187 is described below

commit 915c1873f75aa0db6c5385a15e3313a10a8788ca
Author: Traky Deng <[email protected]>
AuthorDate: Thu Jan 4 06:56:47 2024 -0800

    fix: update ETCD_ADVERTISE_CLIENT_URLS from 0.0.0.0 to FQDN (#533)
---
 compose/docker-compose-master.yaml  | 2 +-
 compose/docker-compose-release.yaml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/compose/docker-compose-master.yaml 
b/compose/docker-compose-master.yaml
index e35a858..5a2519e 100644
--- a/compose/docker-compose-master.yaml
+++ b/compose/docker-compose-master.yaml
@@ -43,7 +43,7 @@ services:
       ETCD_DATA_DIR: /etcd_data
       ETCD_ENABLE_V2: "true"
       ALLOW_NONE_AUTHENTICATION: "yes"
-      ETCD_ADVERTISE_CLIENT_URLS: "http://0.0.0.0:2379";
+      ETCD_ADVERTISE_CLIENT_URLS: "http://etcd:2379";
       ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379";
     ports:
       - "2379:2379/tcp"
diff --git a/compose/docker-compose-release.yaml 
b/compose/docker-compose-release.yaml
index bd9554c..c36474b 100644
--- a/compose/docker-compose-release.yaml
+++ b/compose/docker-compose-release.yaml
@@ -43,7 +43,7 @@ services:
       ETCD_DATA_DIR: /etcd_data
       ETCD_ENABLE_V2: "true"
       ALLOW_NONE_AUTHENTICATION: "yes"
-      ETCD_ADVERTISE_CLIENT_URLS: "http://0.0.0.0:2379";
+      ETCD_ADVERTISE_CLIENT_URLS: "http://etcd:2379";
       ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379";
     ports:
       - "2379:2379/tcp"

Reply via email to