view docker/docker-compose.yml @ 3945:2b2856ae5eeb

plugin XEP-0470: fix autocreate in `create_attachments_node`: Due to config check, `create_attachments_node` was failing when the target node was not already existing. However, this is the case when an item is published and `autocreate` is expected, thus the node is now created if not already existing and new `autocreate` argument is set.
author Goffi <goffi@goffi.org>
date Sat, 15 Oct 2022 20:38:33 +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