docker-compose.yml 360 B

123456789101112131415
  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. offer:
  10. container_name: offer
  11. depends_on:
  12. - answer
  13. build: ./offer
  14. command: offer -answer-address answer:60000