blob: 2e62813584c0858d4af4b289f8215f361e6f5fb2 [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:
etcd:
hostname: etcd
image: quay.io/coreos/etcd:v3.5.0
ports:
- 2379
networks:
- e2e
environment:
ETCD_LISTEN_CLIENT_URLS: http://0.0.0.0:2379
ETCD_ADVERTISE_CLIENT_URLS: http://0.0.0.0:2379
ETCD_LISTEN_PEER_URLS: http://0.0.0.0:2380
ETCD_INITIAL_ADVERTISE_PEER_URLS: http://0.0.0.0:2380
ETCD_INITIAL_CLUSTER: s1=http://0.0.0.0:2380
ETCD_NAME: s1
ETCD_DATA_DIR: /etcd-data
healthcheck:
test: ["CMD", "sh", "-c", "etcdctl endpoint health" ]
interval: 5s
timeout: 60s
retries: 120
oap:
extends:
file: ../../base/base-compose.yml
service: oap
environment:
SW_LOG_LAL_FILES: test
SW_CLUSTER: etcd
volumes:
- ./lal.yaml:/skywalking/config/lal/test.yaml
ports:
- 12800
depends_on:
etcd:
condition: service_healthy
satellite:
extends:
file: ../../base/base-compose.yml
service: satellite
ports:
- 11800
depends_on:
oap:
condition: service_healthy
provider:
extends:
file: ../../base/base-compose.yml
service: provider
ports:
- 9090
depends_on:
satellite:
condition: service_healthy
consumer:
extends:
file: ../../base/base-compose.yml
service: consumer
ports:
- 9090
depends_on:
satellite:
condition: service_healthy
provider:
condition: service_healthy
networks:
e2e: