Newer
Older
web-services / docker-compose.yml
@Nicolas Thouvenin Nicolas Thouvenin on 10 Dec 2021 686 bytes add section for dev
version: '3'
services:
    shell:
        image: inistcnrs/lodex-workers-python:3.0.6
        environment:
            - http_proxy
            - https_proxy
        volumes:
           - .:/app
        command: bash
    python:
        image: inistcnrs/lodex-workers-python:3.0.6
        environment:
            - http_proxy
            - https_proxy
        ports:
            - 31976:31976
        volumes:
            - ./${WORKING_DIR}:/app/public
    nodejs:
        image: inistcnrs/lodex-workers:9.0.5
        environment:
            - http_proxy
            - https_proxy
        ports:
            - 31976:31976
        volumes:
            - ./${WORKING_DIR}:/app/public