docker-compose.yml 516 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
version: '3.8'
services:
    oai-gnb:
        image: oai-gnb-aw2s:latest
        privileged: true
        network_mode: "host"
        container_name: oai-gnb-aw2s
        environment:
            TZ: Europe/Paris
            USE_ADDITIONAL_OPTIONS: --sa
        volumes:
12
            - ../../conf_files/gnb.sa.band78.51prb.aw2s.ddsuu.conf:/opt/oai-gnb-aw2s/etc/gnb.conf
13 14 15 16 17
        healthcheck:
            test: /bin/bash -c "pgrep nr-softmodem"
            interval: 10s
            timeout: 5s
            retries: 5