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 24af251 add more doc for docker (#41)
24af251 is described below
commit 24af251069d64e8aa7526db47a73ad667ad3d8da
Author: Wen Ming <[email protected]>
AuthorDate: Fri Apr 3 15:49:24 2020 +0800
add more doc for docker (#41)
---
README.md | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index f361ec7..5bb7ef8 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,18 @@
## Docker distribution for Apache APISIX
-You can install multiple versions of Apache APISIX through docker:
+**Docker images are not official ASF releases but provided for convenience.
Recommended usage is always to build the source.**
-1. install master branch version, which has latest code:
+1. install release version (Apache releases are beginning from version 0.9):
```
-docker build -t apisix:master-alpine -f alpine/Dockerfile alpine
+docker build -t apisix:1.1-alpine --build-arg APISIX_VERSION=1.1 -f
alpine/Dockerfile alpine
```
-2. install release versions:
+2. install master branch version, which has latest code(ONLY for the
developer's convenience):
```
-docker build -t apisix:1.1-alpine --build-arg APISIX_VERSION=1.1 -f
alpine/Dockerfile alpine
+docker build -t apisix:master-alpine -f alpine/Dockerfile alpine
```
+
## Run etcd server
```