blob: 0e3b5287e6bea5792505d123f741abab2e654d36 [file] [log] [blame]
# 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.
version: '2.1'
services:
proxy:
build:
context: .
dockerfile: Dockerfile.nginx
networks:
- e2e
volumes:
- ./ssl:/ssl_data
- ./nginx.conf:/etc/nginx/nginx.conf
expose:
- 443
healthcheck:
test: [ "CMD", "bash", "-c", "cat < /dev/null > /dev/tcp/127.0.0.1/80" ]
interval: 5s
timeout: 60s
retries: 120
service:
build:
context: .
dockerfile: Dockerfile
networks:
- e2e
volumes:
- ./ssl:/ssl_data
ports:
- 10443:10443
healthcheck:
test: [ "CMD", "bash", "-c", "cat < /dev/null > /dev/tcp/127.0.0.1/10443" ]
interval: 5s
timeout: 60s
retries: 120
oap:
extends:
file: ../../../../../base/base-compose.yml
service: oap
environment:
SW_METER_ANALYZER_ACTIVE_FILES: network-profiling
SW_LOG_LAL_FILES: slow-trace-lal
SW_RECEIVER_ZIPKIN: default
SW_QUERY_ZIPKIN: default
volumes:
- ./network-profiling.yaml:/skywalking/config/meter-analyzer-config/network-profiling.yaml
- ./slow-trace-lal.yaml:/skywalking/config/lal/slow-trace-lal.yaml
ports:
- 12800:12800
- 9411:9411
- 9412:9412
rover:
extends:
file: ../../../../../base/base-compose.yml
service: rover
volumes:
- ./rover_configs.yaml:/skywalking/configs/rover_configs.yaml
networks:
e2e: