github.com/pion/webrtc/v4@v4.0.1/examples/pion-to-pion/docker-compose.yml (about) 1 # SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly> 2 # SPDX-License-Identifier: MIT 3 version: '3' 4 services: 5 answer: 6 container_name: answer 7 build: ./answer 8 command: answer -offer-address offer:50000 9 10 offer: 11 container_name: offer 12 depends_on: 13 - answer 14 build: ./offer 15 command: offer -answer-address answer:60000