Newer
Older
web-services / docker-compose.yml
@Nicolas Thouvenin Nicolas Thouvenin on 10 Mar 2022 688 bytes feat: add base line nodjs and python
version: '3'
services:
    shell:
        image: inistcnrs/lodex-workers-python:4.0.10
        environment:
            - http_proxy
            - https_proxy
        volumes:
           - .:/app
        command: bash
    python:
        image: inistcnrs/lodex-workers-python:4.0.10
        environment:
            - http_proxy
            - https_proxy
        ports:
            - 31976:31976
        volumes:
            - ./${WORKING_DIR}:/app/public
    nodejs:
        image: inistcnrs/lodex-workers:9.2.1
        environment:
            - http_proxy
            - https_proxy
        ports:
            - 31976:31976
        volumes:
            - ./${WORKING_DIR}:/app/public