From e84f0d758ef05d79d983e88e188cfb0863e7dff0 Mon Sep 17 00:00:00 2001 From: Gao Hongtao Date: Sun, 19 May 2019 10:33:18 +0800 Subject: [PATCH] Create OAP README.md --- 6/6.1/oap/README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 6/6.1/oap/README.md diff --git a/6/6.1/oap/README.md b/6/6.1/oap/README.md new file mode 100644 index 0000000..0e03461 --- /dev/null +++ b/6/6.1/oap/README.md @@ -0,0 +1,36 @@ +# Apache SkyWalking OAP Server Docker Files + +Sky Walking logo + +**SkyWalking**: an APM(application performance monitor) system, especially designed for +microservices, cloud native and container-based (Docker, Kubernetes, Mesos) architectures. + +# How to use this image + +## Start a `standlone` container with `H2` storage + +``` +$ docker run --name oap --restart always -d apache/skywalking-oap-server:6.1.0 +``` + +## Start a `standlone` container with `elasticsearch` storage whose address is `elasticsearch:9200` + +``` +$ docker run --name oap --restart always -d -e SW_STORAGE=elasticsearch -e SW_STORAGE_ES_CLUSTER_NODES=elasticsearch:9200 apache/skywalking-oap-server:6.1.0 +``` + +# Configuration + +We could setup enviroment variables to configure this image. Most of them is defined in [setup backends](), but Apache SkyWalking Docker Image adds extra enviroment variables to help user to compose it propertly. + +## SW_CLUSTER +Default value is `standalone`, avaliable values are: + - `standlone` + - `zookeeper` + - `kubernetes` + - con +## SW_STORAGE +## XXX_ENABLED + +# License +[Apache 2.0 License.](/LICENSE) -- GitLab