view docker/docker-compose.yml @ 4291:39ac821ebbdb

plugin XEP-0167: handle conferences: - SDP can now be answered by component instead of frontend. This is useful for A/V conferences component to handle A/V call jingle sessions. - new `call_update` and method, and `content-add` action preparation. This is not yet used by A/V conference, but it's a preparation for a potential future use. - Add NS_AV_CONFERENCES to features as required by the newly proposed A/V Conferences protoXEP. rel 447
author Goffi <goffi@goffi.org>
date Mon, 29 Jul 2024 03:31:09 +0200
parents 0ffaa231138c
children
line wrap: on
line source

version: "3.6"
services:

  backend:
    image: "libervia/backend:${DOCKER_LIBERVIA_REV:-dev}"
    build:
      context: backend-dev
      args:
        REVISION: "${DOCKER_LIBERVIA_REV:-}"

  web:
    image: "libervia/web:${DOCKER_LIBERVIA_REV:-dev}"
    build:
      context: libervia-web-dev
      args:
        REVISION: "${DOCKER_LIBERVIA_REV:-}"
    depends_on:
      - backend