mirror of
https://github.com/pion/stun.git
synced 2025-09-26 20:01:18 +08:00
28 lines
533 B
YAML
28 lines
533 B
YAML
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
version: '3'
|
|
|
|
services:
|
|
stun-client:
|
|
depends_on:
|
|
- stun-server
|
|
links:
|
|
- stun-server
|
|
build:
|
|
context: ..
|
|
dockerfile: e2e/client.Dockerfile
|
|
args:
|
|
CI_GO_VERSION: ${CI_GO_VERSION}
|
|
stun-server:
|
|
build:
|
|
context: ..
|
|
dockerfile: e2e/server.Dockerfile
|
|
volumes:
|
|
- ./turnserver.conf:/etc/turnserver.conf
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: stun_e2e_coturn
|