docker-compose.yml 733 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
version: '3.8'

services:
    enb_mono_fdd:
        image: oai-enb:latest
        privileged: true
        container_name: lte-b200-enb-fdd-10Mhz-tm1
        environment:
            USE_B2XX: 'yes'
10
            USE_VOLUMED_CONF: 'yes'
11 12
            USE_ADDITIONAL_OPTIONS: --RUs.[0].max_rxgain 120 --log_config.global_log_options level,nocolor,time,line_num,function
        volumes:
13
            - ../../conf_files/enb.band7.50prb.usrpb200-tm1.conf:/opt/oai-enb/etc/mounted.conf
14 15 16 17 18 19 20 21
            - /dev:/dev
        network_mode: "host"
        healthcheck:
            # pgrep does NOT work
            test: /bin/bash -c "ps aux | grep -v grep | grep -c softmodem"
            interval: 10s
            timeout: 5s
            retries: 5