This is an automated email from the ASF dual-hosted git repository. wusheng pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/skywalking-docker.git
commit e84f0d758ef05d79d983e88e188cfb0863e7dff0 Author: Gao Hongtao <[email protected]> AuthorDate: Sun May 19 10:33:18 2019 +0800 Create OAP README.md --- 6/6.1/oap/README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) 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 + +<img src="http://skywalking.apache.org/assets/logo.svg" alt="Sky Walking logo" height="90px" align="right" /> + +**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)
