Revision 0610285a2ef2f319bc949692a22e81561300a7f8 authored by Nicolas Thouvenin on 24 September 2020, 14:29:03 UTC, committed by Nicolas Thouvenin on 24 September 2020, 14:29:03 UTC
1 parent 772c381
Raw File
docker-compose.yml
version: '3'

services:
    lodex:
        build:
            context: .
        user: '${UID}:${GID}'
        environment:
            http_proxy: ${http_proxy}
            https_proxy: ${https_proxy}
            EZMASTER_MONGODB_HOST_PORT: 'mongo:27017'
            EZMASTER_TECHNICAL_NAME: 'lodex'
            no_proxy: 'localhost,127.0.0.1,'
            BABEL_DISABLE_CACHE: 1
        volumes:
            - ./upload:/app/upload
        links:
            - mongo
            - lodex-extended
        ports:
            - 3000:3000

    mongo:
        image: mongo:3.4.1
        command: '--smallfiles'
        ports:
            - 27017:27017
    lodex-extended:
        image: inistcnrs/lodex-extended:6.1.3
        ports:
            - 31976:31976
back to top