108 lines
2.6 KiB
YAML
108 lines
2.6 KiB
YAML
# 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:
|
|
h2db:
|
|
build:
|
|
context: .
|
|
dockerfile: ../Dockerfile.h2
|
|
networks:
|
|
- e2e
|
|
expose:
|
|
- 1521
|
|
healthcheck:
|
|
test: [ "CMD", "sh", "-c", "nc -z 127.0.0.1 1521" ]
|
|
interval: 5s
|
|
timeout: 60s
|
|
retries: 120
|
|
|
|
oap:
|
|
extends:
|
|
file: ../base-compose.yml
|
|
service: oap
|
|
environment:
|
|
SW_STORAGE: h2
|
|
SW_STORAGE_H2_URL: jdbc:h2:tcp://h2db:1521/skywalking-oap-db
|
|
depends_on:
|
|
h2db:
|
|
condition: service_healthy
|
|
|
|
provider:
|
|
extends:
|
|
file: ../base-compose.yml
|
|
service: provider
|
|
depends_on:
|
|
oap:
|
|
condition: service_healthy
|
|
|
|
test-ui:
|
|
build:
|
|
context: .
|
|
dockerfile: with-skywalking-client-js/Dockerfile.test-ui
|
|
networks:
|
|
- e2e
|
|
expose:
|
|
- 80
|
|
depends_on:
|
|
oap:
|
|
condition: service_healthy
|
|
provider:
|
|
condition: service_healthy
|
|
|
|
selenium-hub:
|
|
image: selenium/hub:4.0.0-alpha-7-prerelease-20201009
|
|
networks:
|
|
- e2e
|
|
expose:
|
|
- 4444
|
|
depends_on:
|
|
test-ui:
|
|
condition: service_started
|
|
|
|
chrome:
|
|
image: selenium/node-chrome:4.0.0-alpha-7-prerelease-20201009
|
|
networks:
|
|
- e2e
|
|
volumes:
|
|
- /dev/shm:/dev/shm
|
|
depends_on:
|
|
selenium-hub:
|
|
condition: service_started
|
|
test-ui:
|
|
condition: service_started
|
|
environment:
|
|
- SE_EVENT_BUS_HOST=selenium-hub
|
|
- SE_EVENT_BUS_PUBLISH_PORT=4442
|
|
- SE_EVENT_BUS_SUBSCRIBE_PORT=4443
|
|
|
|
generate-traffic:
|
|
build:
|
|
context: .
|
|
dockerfile: with-skywalking-client-js/Dockerfile.generate-traffic
|
|
networks:
|
|
- e2e
|
|
restart: always
|
|
depends_on:
|
|
chrome:
|
|
condition: service_started
|
|
selenium-hub:
|
|
condition: service_started
|
|
test-ui:
|
|
condition: service_started
|
|
|
|
networks:
|
|
e2e: |