view docker/docker-compose.yml @ 4097:0f6fd28fde0d

component file sharing: fix method name case: `render_OPTIONS` is a method inherited from Twisted, name has been put to lowercase following massive refactoring, resulting in the method not being called anymore. This patch fixes it.
author Goffi <goffi@goffi.org>
date Thu, 22 Jun 2023 15:45:20 +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