You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by zh...@apache.org on 2022/12/02 08:17:38 UTC

[apisix-docker] branch master updated: fix: wrong etcd advertise url (#387)

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

zhangjintao 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 8fb6768  fix: wrong etcd advertise url (#387)
8fb6768 is described below

commit 8fb6768ee84c3d6038940cd69038b3c27253cbce
Author: Zeping Bai <bz...@apache.org>
AuthorDate: Fri Dec 2 16:17:32 2022 +0800

    fix: wrong etcd advertise url (#387)
---
 example/docker-compose.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/example/docker-compose.yml b/example/docker-compose.yml
index fcc3331..f8bb634 100644
--- a/example/docker-compose.yml
+++ b/example/docker-compose.yml
@@ -54,7 +54,7 @@ services:
     environment:
       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"