28 lines
		
	
	
		
			543 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			543 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: '3'
 | 
						|
services:
 | 
						|
  nr_ue:
 | 
						|
    image: docker_ueransim
 | 
						|
    container_name: nr_ue
 | 
						|
    stdin_open: true
 | 
						|
    tty: true
 | 
						|
    volumes:
 | 
						|
      - ./ueransim:/mnt/ueransim
 | 
						|
      - /etc/timezone:/etc/timezone:ro
 | 
						|
      - /etc/localtime:/etc/localtime:ro
 | 
						|
    env_file:
 | 
						|
      - .env
 | 
						|
    environment:
 | 
						|
      - COMPONENT_NAME=ueransim-ue-1
 | 
						|
    expose:
 | 
						|
      - "4997/udp"
 | 
						|
    cap_add:
 | 
						|
      - NET_ADMIN
 | 
						|
    privileged: true
 | 
						|
    networks:
 | 
						|
      default:
 | 
						|
        ipv4_address: ${NR_UE_IP}
 | 
						|
networks:
 | 
						|
  default:
 | 
						|
    external:
 | 
						|
      name: docker_open5gs_default
 |