提交 ef632da6 编写于 作者: G Gao Hongtao

Add Dockerfile for oap server.

上级 fc3b440a
snapshot:
cd snapshot; \
cp ../../dist/apache-skywalking-apm-incubating.tar.gz ./ ; \
docker build -t skywalking/oap:latest .
.PHONY: snapshot
\ No newline at end of file
# Build snapshot image
```shell
make snapshot
```
# Run oap by docker-compose
```shell
docker-compose -f stack.yml up
```
\ No newline at end of file
FROM openjdk:8-jre-alpine
ENV DIST_NAME=apache-skywalking-apm-incubating \
JAVA_OPTS=" -Xms256M -Xmx512M"
# Install required packages
RUN apk add --no-cache \
bash
COPY "$DIST_NAME.tar.gz" /
RUN set -ex; \
tar -xzf "$DIST_NAME.tar.gz"; \
rm -rf "$DIST_NAME.tar.gz"; rm -rf config/log4j2.xml;
WORKDIR $DIST_NAME
COPY log4j2.xml config/
COPY docker-entrypoint.sh .
EXPOSE 12800 11800
ENTRYPOINT ["./docker-entrypoint.sh"]
\ No newline at end of file
#!/bin/bash
set -e
CLASSPATH="config:$CLASSPATH"
for i in oap-libs/*.jar
do
CLASSPATH="$i:$CLASSPATH"
done
java ${JAVA_OPTS} -classpath $CLASSPATH \
-Dstorage.elasticsearch.clusterNodes=elasticsearch:9200 \
org.apache.skywalking.oap.server.starter.OAPServerStartUp
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
-->
<Configuration status="INFO">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout charset="UTF-8" pattern="%d - %c -%-4r [%t] %-5p %x - %m%n"/>
</Console>
</Appenders>
<Loggers>
<logger name="org.eclipse.jetty" level="INFO"/>
<logger name="org.apache.zookeeper" level="INFO"/>
<logger name="org.elasticsearch.common.network.IfConfig" level="INFO"/>
<logger name="io.grpc.netty" level="INFO"/>
<logger name="org.apache.skywalking.oap.server.receiver.istio.telemetry" level="DEBUG"/>
<Root level="INFO">
<AppenderRef ref="Console"/>
</Root>
</Loggers>
</Configuration>
version: '3.3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.3.2
container_name: elasticsearch
restart: always
ports:
- 9200:9200
- 9300:9300
environment:
discovery.type: single-node
oap:
image: skywalking/oap
container_name: oap
depends_on:
- elasticsearch
links:
- elasticsearch
restart: always
ports:
- 11800:11800
- 12800:12800
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册