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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4be3d5a  change to absolute path (#32)
4be3d5a is described below

commit 4be3d5afaf5570706d26ae4d3303b69d2d65d830
Author: Fei Luo <502207...@qq.com>
AuthorDate: Fri Nov 22 20:20:25 2019 +0800

    change to absolute path (#32)
---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index d162c3b..1c267de 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ docker build -t apisix:0.8-alpine --build-arg 
APISIX_VERSION=0.8 -f alpine/Docke
 
 ```
 docker run -it --name etcd-server \
--v ./example/etcd_conf/etcd.conf.yml:/opt/bitnami/etcd/conf/etcd.conf.yml \
+-v `pwd`/example/etcd_conf/etcd.conf.yml:/opt/bitnami/etcd/conf/etcd.conf.yml \
 -p 2379:2379 \
 -p 2380:2380  \
 --env ALLOW_NONE_AUTHENTICATION=yes bitnami/etcd:3.3.13-r80
@@ -34,8 +34,8 @@ You need etcd docker to work with APISIX. You can refer to 
[the docker-compose e
 Or you can run APISIX with Docker directly(Docker name is test-api-gateway):
 ```
 docker run --name test-api-gateway \
--v ./example/apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml \ 
--v ./example/apisix_log:/usr/local/apisix/logs  \
+-v `pwd`/example/apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml \ 
+-v `pwd`/example/apisix_log:/usr/local/apisix/logs  \
 -p 8080:9080 \ 
 -p 8083:9443 \
 -d iresty/apisix

Reply via email to