Commit 5a6d2538 authored by Jaroslava Fiedlerova's avatar Jaroslava Fiedlerova

Merge remote-tracking branch 'origin/changeRegName' into integration_2025_w44 (!3706)

Change registry name env var content

Currently setting REGISTRY="" in a .env file results in docker failing to find
/image-name:tag. This corrects that, so it looks for local images named
image-name:tag.
parents d4045fd8 aff3c987
...@@ -119,7 +119,7 @@ def ExistEnvFilePrint(ssh, wd, prompt='env vars in existing'): ...@@ -119,7 +119,7 @@ def ExistEnvFilePrint(ssh, wd, prompt='env vars in existing'):
def WriteEnvFile(ssh, services, wd, tag, flexric_tag): def WriteEnvFile(ssh, services, wd, tag, flexric_tag):
ret = ssh.run(f'cat {wd}/.env', silent=True, reportNonZero=False) ret = ssh.run(f'cat {wd}/.env', silent=True, reportNonZero=False)
registry = "oai-ci" # pull_images() gives us this registry path registry = "oai-ci/" # pull_images() gives us this registry path
envs = {"REGISTRY":registry, "TAG": tag, "FLEXRIC_TAG": flexric_tag} envs = {"REGISTRY":registry, "TAG": tag, "FLEXRIC_TAG": flexric_tag}
if ret.returncode == 0: # it exists, we have to update if ret.returncode == 0: # it exists, we have to update
# transforms env file to dictionary # transforms env file to dictionary
...@@ -134,7 +134,8 @@ def WriteEnvFile(ssh, services, wd, tag, flexric_tag): ...@@ -134,7 +134,8 @@ def WriteEnvFile(ssh, services, wd, tag, flexric_tag):
# or -asan images. We need to detect which kind we did pull. # or -asan images. We need to detect which kind we did pull.
fullImageName = GetImageName(ssh, svc, f"{wd}/docker-compose.y*ml") fullImageName = GetImageName(ssh, svc, f"{wd}/docker-compose.y*ml")
image = fullImageName.split("/")[-1].split(":")[0] image = fullImageName.split("/")[-1].split(":")[0]
checkimg = f"{registry}/{image}-asan:{tag}" # registry now includes the trailing slash ("oai-ci/")
checkimg = f"{registry}{image}-asan:{tag}"
ret = ssh.run(f'docker image inspect {checkimg}', reportNonZero=False) ret = ssh.run(f'docker image inspect {checkimg}', reportNonZero=False)
if ret.returncode == 0: if ret.returncode == 0:
logging.info(f"detected pulled image {checkimg}") logging.info(f"detected pulled image {checkimg}")
......
...@@ -178,7 +178,7 @@ services: ...@@ -178,7 +178,7 @@ services:
retries: 5 retries: 5
oai_enb: oai_enb:
image: ${REGISTRY:-oaisoftwarealliance}/${ENB_IMG:-oai-enb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${ENB_IMG:-oai-enb}:${TAG:-develop}
privileged: true privileged: true
container_name: l2sim4g-oai-enb container_name: l2sim4g-oai-enb
network_mode: "host" network_mode: "host"
...@@ -210,7 +210,7 @@ services: ...@@ -210,7 +210,7 @@ services:
retries: 5 retries: 5
oai_ue1: oai_ue1:
image: ${REGISTRY:-oaisoftwarealliance}/${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop}
privileged: true privileged: true
container_name: l2sim4g-oai-lte-ue1 container_name: l2sim4g-oai-lte-ue1
network_mode: "host" network_mode: "host"
...@@ -229,7 +229,7 @@ services: ...@@ -229,7 +229,7 @@ services:
retries: 5 retries: 5
oai_ue2: oai_ue2:
image: ${REGISTRY:-oaisoftwarealliance}/${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop}
privileged: true privileged: true
container_name: l2sim4g-oai-lte-ue2 container_name: l2sim4g-oai-lte-ue2
network_mode: "host" network_mode: "host"
......
...@@ -178,7 +178,7 @@ services: ...@@ -178,7 +178,7 @@ services:
retries: 5 retries: 5
oai_enb0: oai_enb0:
image: ${REGISTRY:-oaisoftwarealliance}/${ENB_IMG:-oai-enb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${ENB_IMG:-oai-enb}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-enb container_name: rfsim4g-oai-enb
networks: networks:
...@@ -197,7 +197,7 @@ services: ...@@ -197,7 +197,7 @@ services:
retries: 5 retries: 5
oai_ue0: oai_ue0:
image: ${REGISTRY:-oaisoftwarealliance}/${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-lte-ue0 container_name: rfsim4g-oai-lte-ue0
networks: networks:
......
services: services:
oai_enb0: oai_enb0:
image: ${REGISTRY:-oaisoftwarealliance}/${ENB_IMG:-oai-enb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${ENB_IMG:-oai-enb}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-enb container_name: rfsim4g-oai-enb
networks: networks:
...@@ -19,7 +19,7 @@ services: ...@@ -19,7 +19,7 @@ services:
retries: 5 retries: 5
oai_ue0: oai_ue0:
image: ${REGISTRY:-oaisoftwarealliance}/${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-lte-ue0 container_name: rfsim4g-oai-lte-ue0
networks: networks:
......
...@@ -178,7 +178,7 @@ services: ...@@ -178,7 +178,7 @@ services:
retries: 5 retries: 5
oai_enb0: oai_enb0:
image: ${REGISTRY:-oaisoftwarealliance}/${ENB_IMG:-oai-enb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${ENB_IMG:-oai-enb}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-enb container_name: rfsim4g-oai-enb
networks: networks:
...@@ -197,7 +197,7 @@ services: ...@@ -197,7 +197,7 @@ services:
retries: 5 retries: 5
oai_ue0: oai_ue0:
image: ${REGISTRY:-oaisoftwarealliance}/${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-lte-ue0 container_name: rfsim4g-oai-lte-ue0
networks: networks:
......
...@@ -178,7 +178,7 @@ services: ...@@ -178,7 +178,7 @@ services:
retries: 5 retries: 5
oai_enb0: oai_enb0:
image: ${REGISTRY:-oaisoftwarealliance}/${ENB_IMG:-oai-enb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${ENB_IMG:-oai-enb}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-enb container_name: rfsim4g-oai-enb
networks: networks:
...@@ -197,7 +197,7 @@ services: ...@@ -197,7 +197,7 @@ services:
retries: 5 retries: 5
oai_ue0: oai_ue0:
image: ${REGISTRY:-oaisoftwarealliance}/${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-lte-ue0 container_name: rfsim4g-oai-lte-ue0
networks: networks:
......
services: services:
oai_enb0: oai_enb0:
image: ${REGISTRY:-oaisoftwarealliance}/${ENB_IMG:-oai-enb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${ENB_IMG:-oai-enb}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-enb container_name: rfsim4g-oai-enb
networks: networks:
...@@ -19,7 +19,7 @@ services: ...@@ -19,7 +19,7 @@ services:
retries: 5 retries: 5
oai_ue0: oai_ue0:
image: ${REGISTRY:-oaisoftwarealliance}/${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-lte-ue0 container_name: rfsim4g-oai-lte-ue0
networks: networks:
......
services: services:
oai_enb0: oai_enb0:
image: ${REGISTRY:-oaisoftwarealliance}/${ENB_IMG:-oai-enb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${ENB_IMG:-oai-enb}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-enb container_name: rfsim4g-oai-enb
networks: networks:
...@@ -19,7 +19,7 @@ services: ...@@ -19,7 +19,7 @@ services:
retries: 5 retries: 5
oai_ue0: oai_ue0:
image: ${REGISTRY:-oaisoftwarealliance}/${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-lte-ue0 container_name: rfsim4g-oai-lte-ue0
networks: networks:
......
...@@ -178,7 +178,7 @@ services: ...@@ -178,7 +178,7 @@ services:
retries: 5 retries: 5
oai_enb0: oai_enb0:
image: ${REGISTRY:-oaisoftwarealliance}/${ENB_IMG:-oai-enb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${ENB_IMG:-oai-enb}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-enb container_name: rfsim4g-oai-enb
networks: networks:
...@@ -197,7 +197,7 @@ services: ...@@ -197,7 +197,7 @@ services:
retries: 5 retries: 5
oai_ue0: oai_ue0:
image: ${REGISTRY:-oaisoftwarealliance}/${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${LTEUE_IMG:-oai-lte-ue}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim4g-oai-lte-ue0 container_name: rfsim4g-oai-lte-ue0
networks: networks:
......
...@@ -92,7 +92,7 @@ services: ...@@ -92,7 +92,7 @@ services:
retries: 5 retries: 5
oai-cu: oai-cu:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-cu container_name: rfsim5g-oai-cu
cap_drop: cap_drop:
- ALL - ALL
...@@ -121,7 +121,7 @@ services: ...@@ -121,7 +121,7 @@ services:
retries: 5 retries: 5
oai-du-pci0: oai-du-pci0:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-du-pci0 container_name: rfsim5g-oai-du-pci0
cap_drop: cap_drop:
- ALL - ALL
...@@ -152,7 +152,7 @@ services: ...@@ -152,7 +152,7 @@ services:
retries: 5 retries: 5
oai-du-pci1: oai-du-pci1:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-du-pci1 container_name: rfsim5g-oai-du-pci1
cap_drop: cap_drop:
- ALL - ALL
...@@ -187,7 +187,7 @@ services: ...@@ -187,7 +187,7 @@ services:
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
......
...@@ -90,7 +90,7 @@ services: ...@@ -90,7 +90,7 @@ services:
start_period: 10s start_period: 10s
start_interval: 500ms start_interval: 500ms
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-gnb container_name: rfsim5g-oai-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -113,7 +113,7 @@ services: ...@@ -113,7 +113,7 @@ services:
retries: 5 retries: 5
ipc: host ipc: host
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
......
...@@ -90,7 +90,7 @@ services: ...@@ -90,7 +90,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-gnb container_name: rfsim5g-oai-gnb
cap_add: cap_add:
- SYS_NICE - SYS_NICE
...@@ -114,7 +114,7 @@ services: ...@@ -114,7 +114,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
...@@ -141,7 +141,7 @@ services: ...@@ -141,7 +141,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue2: oai-nr-ue2:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue2 container_name: rfsim5g-oai-nr-ue2
cap_drop: cap_drop:
- ALL - ALL
...@@ -168,7 +168,7 @@ services: ...@@ -168,7 +168,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue3: oai-nr-ue3:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue3 container_name: rfsim5g-oai-nr-ue3
cap_drop: cap_drop:
- ALL - ALL
...@@ -195,7 +195,7 @@ services: ...@@ -195,7 +195,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue4: oai-nr-ue4:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue4 container_name: rfsim5g-oai-nr-ue4
cap_drop: cap_drop:
- ALL - ALL
...@@ -222,7 +222,7 @@ services: ...@@ -222,7 +222,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue5: oai-nr-ue5:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue5 container_name: rfsim5g-oai-nr-ue5
cap_drop: cap_drop:
- ALL - ALL
...@@ -249,7 +249,7 @@ services: ...@@ -249,7 +249,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue6: oai-nr-ue6:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue6 container_name: rfsim5g-oai-nr-ue6
cap_drop: cap_drop:
- ALL - ALL
...@@ -276,7 +276,7 @@ services: ...@@ -276,7 +276,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue7: oai-nr-ue7:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue7 container_name: rfsim5g-oai-nr-ue7
cap_drop: cap_drop:
- ALL - ALL
...@@ -303,7 +303,7 @@ services: ...@@ -303,7 +303,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue8: oai-nr-ue8:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue8 container_name: rfsim5g-oai-nr-ue8
cap_drop: cap_drop:
- ALL - ALL
...@@ -330,7 +330,7 @@ services: ...@@ -330,7 +330,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue9: oai-nr-ue9:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue9 container_name: rfsim5g-oai-nr-ue9
cap_drop: cap_drop:
- ALL - ALL
...@@ -357,7 +357,7 @@ services: ...@@ -357,7 +357,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue10: oai-nr-ue10:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue10 container_name: rfsim5g-oai-nr-ue10
cap_drop: cap_drop:
- ALL - ALL
......
...@@ -90,7 +90,7 @@ services: ...@@ -90,7 +90,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-gnb container_name: rfsim5g-oai-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -112,7 +112,7 @@ services: ...@@ -112,7 +112,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
......
...@@ -90,7 +90,7 @@ services: ...@@ -90,7 +90,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-gnb container_name: rfsim5g-oai-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -115,7 +115,7 @@ services: ...@@ -115,7 +115,7 @@ services:
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
......
...@@ -71,7 +71,7 @@ services: ...@@ -71,7 +71,7 @@ services:
interface_name: eth1 interface_name: eth1
oai-cucp: oai-cucp:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-cucp container_name: rfsim5g-oai-cucp
cap_drop: cap_drop:
- ALL - ALL
...@@ -100,7 +100,7 @@ services: ...@@ -100,7 +100,7 @@ services:
retries: 5 retries: 5
oai-cuup: oai-cuup:
image: ${REGISTRY:-oaisoftwarealliance}/${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop}
container_name: rfsim5g-oai-cuup container_name: rfsim5g-oai-cuup
cap_drop: cap_drop:
- ALL - ALL
...@@ -131,7 +131,7 @@ services: ...@@ -131,7 +131,7 @@ services:
retries: 5 retries: 5
oai-cuup2: oai-cuup2:
image: ${REGISTRY:-oaisoftwarealliance}/${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop}
container_name: rfsim5g-oai-cuup2 container_name: rfsim5g-oai-cuup2
cap_drop: cap_drop:
- ALL - ALL
...@@ -165,7 +165,7 @@ services: ...@@ -165,7 +165,7 @@ services:
retries: 5 retries: 5
oai-cuup3: oai-cuup3:
image: ${REGISTRY:-oaisoftwarealliance}/${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop}
container_name: rfsim5g-oai-cuup3 container_name: rfsim5g-oai-cuup3
cap_drop: cap_drop:
- ALL - ALL
...@@ -199,7 +199,7 @@ services: ...@@ -199,7 +199,7 @@ services:
retries: 5 retries: 5
oai-du: oai-du:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-du container_name: rfsim5g-oai-du
cap_drop: cap_drop:
- ALL - ALL
...@@ -230,7 +230,7 @@ services: ...@@ -230,7 +230,7 @@ services:
retries: 5 retries: 5
oai-du2: oai-du2:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-du2 container_name: rfsim5g-oai-du2
cap_drop: cap_drop:
- ALL - ALL
...@@ -264,7 +264,7 @@ services: ...@@ -264,7 +264,7 @@ services:
retries: 5 retries: 5
oai-du3: oai-du3:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-du3 container_name: rfsim5g-oai-du3
cap_drop: cap_drop:
- ALL - ALL
...@@ -298,7 +298,7 @@ services: ...@@ -298,7 +298,7 @@ services:
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
...@@ -328,7 +328,7 @@ services: ...@@ -328,7 +328,7 @@ services:
retries: 5 retries: 5
oai-nr-ue2: oai-nr-ue2:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue2 container_name: rfsim5g-oai-nr-ue2
cap_drop: cap_drop:
- ALL - ALL
...@@ -358,7 +358,7 @@ services: ...@@ -358,7 +358,7 @@ services:
retries: 5 retries: 5
oai-nr-ue3: oai-nr-ue3:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue3 container_name: rfsim5g-oai-nr-ue3
cap_drop: cap_drop:
- ALL - ALL
......
services: services:
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-gnb container_name: rfsim5g-oai-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -25,7 +25,7 @@ services: ...@@ -25,7 +25,7 @@ services:
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
......
services: services:
oai-flexric: oai-flexric:
image: ${REGISTRY:-oaisoftwarealliance}/oai-flexric:${FLEXRIC_TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-flexric:${FLEXRIC_TAG:-develop}
container_name: oai-flexric container_name: oai-flexric
networks: networks:
public_net: public_net:
...@@ -13,7 +13,7 @@ services: ...@@ -13,7 +13,7 @@ services:
timeout: 5s timeout: 5s
xapp-rc-moni: xapp-rc-moni:
image: ${REGISTRY:-oaisoftwarealliance}/oai-flexric:${FLEXRIC_TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-flexric:${FLEXRIC_TAG:-develop}
command: "stdbuf -o0 /usr/local/flexric/xApp/c/monitor/xapp_rc_moni" command: "stdbuf -o0 /usr/local/flexric/xApp/c/monitor/xapp_rc_moni"
container_name: xapp-rc-moni container_name: xapp-rc-moni
depends_on: depends_on:
...@@ -30,7 +30,7 @@ services: ...@@ -30,7 +30,7 @@ services:
timeout: 5s timeout: 5s
xapp-kpm-moni: xapp-kpm-moni:
image: ${REGISTRY:-oaisoftwarealliance}/oai-flexric:${FLEXRIC_TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-flexric:${FLEXRIC_TAG:-develop}
command: "stdbuf -o0 /usr/local/flexric/xApp/c/monitor/xapp_kpm_moni" command: "stdbuf -o0 /usr/local/flexric/xApp/c/monitor/xapp_kpm_moni"
container_name: xapp-kpm-moni container_name: xapp-kpm-moni
depends_on: depends_on:
...@@ -47,7 +47,7 @@ services: ...@@ -47,7 +47,7 @@ services:
timeout: 5s timeout: 5s
xapp-kpm-rc: xapp-kpm-rc:
image: ${REGISTRY:-oaisoftwarealliance}/oai-flexric:${FLEXRIC_TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-flexric:${FLEXRIC_TAG:-develop}
command: "stdbuf -o0 /usr/local/flexric/xApp/c/kpm_rc/xapp_kpm_rc" command: "stdbuf -o0 /usr/local/flexric/xApp/c/kpm_rc/xapp_kpm_rc"
container_name: xapp-kpm-rc container_name: xapp-kpm-rc
depends_on: depends_on:
...@@ -64,7 +64,7 @@ services: ...@@ -64,7 +64,7 @@ services:
timeout: 5s timeout: 5s
xapp-gtp-mac-rlc-pdcp-moni: xapp-gtp-mac-rlc-pdcp-moni:
image: ${REGISTRY:-oaisoftwarealliance}/oai-flexric:${FLEXRIC_TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-flexric:${FLEXRIC_TAG:-develop}
command: "stdbuf -o0 /usr/local/flexric/xApp/c/monitor/xapp_gtp_mac_rlc_pdcp_moni" command: "stdbuf -o0 /usr/local/flexric/xApp/c/monitor/xapp_gtp_mac_rlc_pdcp_moni"
container_name: xapp-gtp-mac-rlc-pdcp-moni container_name: xapp-gtp-mac-rlc-pdcp-moni
depends_on: depends_on:
...@@ -81,7 +81,7 @@ services: ...@@ -81,7 +81,7 @@ services:
timeout: 5s timeout: 5s
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim5g-oai-gnb container_name: rfsim5g-oai-gnb
environment: environment:
...@@ -101,7 +101,7 @@ services: ...@@ -101,7 +101,7 @@ services:
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
environment: environment:
...@@ -120,7 +120,7 @@ services: ...@@ -120,7 +120,7 @@ services:
retries: 5 retries: 5
oai-nr-ue2: oai-nr-ue2:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
privileged: true privileged: true
container_name: rfsim5g-oai-nr-ue2 container_name: rfsim5g-oai-nr-ue2
environment: environment:
......
...@@ -91,7 +91,7 @@ services: ...@@ -91,7 +91,7 @@ services:
retries: 5 retries: 5
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-gnb container_name: rfsim5g-oai-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -112,7 +112,7 @@ services: ...@@ -112,7 +112,7 @@ services:
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
......
...@@ -83,7 +83,7 @@ services: ...@@ -83,7 +83,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-gnb container_name: rfsim5g-oai-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -103,7 +103,7 @@ services: ...@@ -103,7 +103,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
......
...@@ -84,7 +84,7 @@ services: ...@@ -84,7 +84,7 @@ services:
retries: 5 retries: 5
oai-cucp-0: oai-cucp-0:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-cucp-0 container_name: rfsim5g-oai-cucp-0
cap_drop: cap_drop:
- ALL - ALL
...@@ -111,7 +111,7 @@ services: ...@@ -111,7 +111,7 @@ services:
retries: 5 retries: 5
oai-cuup-0: oai-cuup-0:
image: ${REGISTRY:-oaisoftwarealliance}/${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop}
container_name: rfsim5g-oai-cuup-0 container_name: rfsim5g-oai-cuup-0
cap_drop: cap_drop:
- ALL - ALL
...@@ -139,7 +139,7 @@ services: ...@@ -139,7 +139,7 @@ services:
oai-du-0: oai-du-0:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-du-0 container_name: rfsim5g-oai-du-0
cap_drop: cap_drop:
- ALL - ALL
...@@ -168,7 +168,7 @@ services: ...@@ -168,7 +168,7 @@ services:
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
...@@ -194,7 +194,7 @@ services: ...@@ -194,7 +194,7 @@ services:
retries: 5 retries: 5
oai-cucp-1: oai-cucp-1:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-cucp-1 container_name: rfsim5g-oai-cucp-1
cap_drop: cap_drop:
- ALL - ALL
...@@ -226,7 +226,7 @@ services: ...@@ -226,7 +226,7 @@ services:
retries: 5 retries: 5
oai-cuup-1: oai-cuup-1:
image: ${REGISTRY:-oaisoftwarealliance}/${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop}
container_name: rfsim5g-oai-cuup-1 container_name: rfsim5g-oai-cuup-1
cap_drop: cap_drop:
- ALL - ALL
...@@ -253,7 +253,7 @@ services: ...@@ -253,7 +253,7 @@ services:
retries: 5 retries: 5
oai-du-1: oai-du-1:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-du-1 container_name: rfsim5g-oai-du-1
cap_drop: cap_drop:
- ALL - ALL
......
...@@ -90,7 +90,7 @@ services: ...@@ -90,7 +90,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-gnb container_name: rfsim5g-oai-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -115,7 +115,7 @@ services: ...@@ -115,7 +115,7 @@ services:
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
......
...@@ -87,7 +87,7 @@ services: ...@@ -87,7 +87,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-gnb container_name: rfsim5g-oai-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -110,7 +110,7 @@ services: ...@@ -110,7 +110,7 @@ services:
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
......
services: services:
oai-nr-ue-1: oai-nr-ue-1:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue-1 container_name: rfsim5g-oai-nr-ue-1
cap_drop: cap_drop:
- ALL - ALL
...@@ -25,7 +25,7 @@ services: ...@@ -25,7 +25,7 @@ services:
retries: 5 retries: 5
oai-nr-ue-2: oai-nr-ue-2:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue-2 container_name: rfsim5g-oai-nr-ue-2
cap_drop: cap_drop:
- ALL - ALL
......
services: services:
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-gnb container_name: rfsim5g-oai-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -25,7 +25,7 @@ services: ...@@ -25,7 +25,7 @@ services:
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
......
...@@ -91,7 +91,7 @@ services: ...@@ -91,7 +91,7 @@ services:
retries: 5 retries: 5
oai-vnf: oai-vnf:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-vnf container_name: rfsim5g-oai-vnf
cap_drop: cap_drop:
- ALL - ALL
...@@ -115,7 +115,7 @@ services: ...@@ -115,7 +115,7 @@ services:
retries: 5 retries: 5
oai-pnf: oai-pnf:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: rfsim5g-oai-pnf container_name: rfsim5g-oai-pnf
cap_drop: cap_drop:
- ALL - ALL
...@@ -139,7 +139,7 @@ services: ...@@ -139,7 +139,7 @@ services:
retries: 5 retries: 5
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
container_name: rfsim5g-oai-nr-ue container_name: rfsim5g-oai-nr-ue
cap_drop: cap_drop:
- ALL - ALL
......
services: services:
oai-cu: oai-cu:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: oai-cu container_name: oai-cu
cap_drop: cap_drop:
- ALL - ALL
...@@ -26,7 +26,7 @@ services: ...@@ -26,7 +26,7 @@ services:
retries: 5 retries: 5
oai-du0: oai-du0:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: oai-du0 container_name: oai-du0
cap_drop: cap_drop:
- ALL - ALL
...@@ -58,7 +58,7 @@ services: ...@@ -58,7 +58,7 @@ services:
retries: 5 retries: 5
oai-du1: oai-du1:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: oai-du1 container_name: oai-du1
cap_drop: cap_drop:
- ALL - ALL
......
services: services:
oai-gnb-pci0: oai-gnb-pci0:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: oai-gnb-pci0 container_name: oai-gnb-pci0
cap_drop: cap_drop:
- ALL - ALL
...@@ -28,7 +28,7 @@ services: ...@@ -28,7 +28,7 @@ services:
retries: 5 retries: 5
oai-gnb-pci1: oai-gnb-pci1:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: oai-gnb-pci1 container_name: oai-gnb-pci1
cap_drop: cap_drop:
- ALL - ALL
......
services: services:
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
network_mode: "host" network_mode: "host"
container_name: oai-gnb container_name: oai-gnb
cap_drop: cap_drop:
......
services: services:
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
network_mode: "host" network_mode: "host"
container_name: oai-gnb container_name: oai-gnb
cap_drop: cap_drop:
......
services: services:
oai-vnf: oai-vnf:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
network_mode: "host" network_mode: "host"
container_name: oai-vnf container_name: oai-vnf
cap_drop: cap_drop:
...@@ -20,7 +20,7 @@ services: ...@@ -20,7 +20,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
oai-pnf: oai-pnf:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
network_mode: "host" network_mode: "host"
container_name: oai-pnf container_name: oai-pnf
cap_drop: cap_drop:
......
services: services:
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
network_mode: "host" network_mode: "host"
container_name: oai-gnb container_name: oai-gnb
cap_drop: cap_drop:
......
services: services:
oai-nr-ue: oai-nr-ue:
image: ${REGISTRY:-oaisoftwarealliance}/${NRUE_IMG:-oai-nr-ue}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRUE_IMG:-oai-nr-ue}:${TAG:-develop}
network_mode: host network_mode: host
container_name: oai-nr-ue container_name: oai-nr-ue
cap_drop: cap_drop:
......
services: services:
enb_mono_fdd: enb_mono_fdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: prod-enb-mono-fdd container_name: prod-enb-mono-fdd
environment: environment:
......
services: services:
rru_fdd: rru_fdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-rru-fdd-05Mhz-tm1 container_name: lte-b200-rru-fdd-05Mhz-tm1
network_mode: "host" network_mode: "host"
...@@ -17,7 +17,7 @@ services: ...@@ -17,7 +17,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
rcc_fdd: rcc_fdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-rcc-fdd-05Mhz-tm1 container_name: lte-b200-rcc-fdd-05Mhz-tm1
network_mode: "host" network_mode: "host"
......
services: services:
enb_mono_fdd: enb_mono_fdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-enb-fdd-05Mhz-tm1 container_name: lte-b200-enb-fdd-05Mhz-tm1
environment: environment:
......
services: services:
enb_mono_fdd: enb_mono_fdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-enb-fdd-05Mhz-tm1 container_name: lte-b200-enb-fdd-05Mhz-tm1
environment: environment:
......
services: services:
lte_ue0: lte_ue0:
image: ${REGISTRY:-oaisoftwarealliance}/oai-lte-ue:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-lte-ue:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-ue-fdd-10Mhz-tm1 container_name: lte-b200-ue-fdd-10Mhz-tm1
environment: environment:
......
services: services:
enb_mono_fdd: enb_mono_fdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-enb-fdd-10Mhz-tm1 container_name: lte-b200-enb-fdd-10Mhz-tm1
environment: environment:
......
services: services:
enb_mono_fdd: enb_mono_fdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-enb-fdd-10Mhz-tm1 container_name: lte-b200-enb-fdd-10Mhz-tm1
environment: environment:
......
services: services:
enb_mono_fdd: enb_mono_fdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-enb-fdd-10Mhz-tm1 container_name: lte-b200-enb-fdd-10Mhz-tm1
environment: environment:
......
services: services:
enb_mono_fdd: enb_mono_fdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-enb-fdd-20Mhz-tm1 container_name: lte-b200-enb-fdd-20Mhz-tm1
environment: environment:
......
services: services:
rru_tdd: rru_tdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-rru-tdd-05Mhz-tm1 container_name: lte-b200-rru-tdd-05Mhz-tm1
network_mode: "host" network_mode: "host"
...@@ -17,7 +17,7 @@ services: ...@@ -17,7 +17,7 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
rcc_tdd: rcc_tdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-rcc-tdd-05Mhz-tm1 container_name: lte-b200-rcc-tdd-05Mhz-tm1
network_mode: "host" network_mode: "host"
......
services: services:
enb_mono_tdd: enb_mono_tdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-enb-tdd-05Mhz-tm1 container_name: lte-b200-enb-tdd-05Mhz-tm1
environment: environment:
......
services: services:
enb_mono_tdd: enb_mono_tdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-enb-tdd-05Mhz-tm2 container_name: lte-b200-enb-tdd-05Mhz-tm2
environment: environment:
......
services: services:
enb_mono_tdd: enb_mono_tdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-enb-tdd-10Mhz-tm1 container_name: lte-b200-enb-tdd-10Mhz-tm1
environment: environment:
......
services: services:
enb_mono_tdd: enb_mono_tdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-enb-tdd-20Mhz-tm1 container_name: lte-b200-enb-tdd-20Mhz-tm1
environment: environment:
......
services: services:
enb_mono_tdd: enb_mono_tdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: lte-b200-enb-tdd-20Mhz-tm1 container_name: lte-b200-enb-tdd-20Mhz-tm1
environment: environment:
......
services: services:
oai-enb: oai-enb:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: oai-enb container_name: oai-enb
environment: environment:
......
services: services:
oai-enb: oai-enb:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: oai-enb container_name: oai-enb
environment: environment:
......
services: services:
enb_mono_fdd: enb_mono_fdd:
image: ${REGISTRY:-oaisoftwarealliance}/oai-enb:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-enb:${TAG:-develop}
privileged: true privileged: true
container_name: nsa-b200-enb container_name: nsa-b200-enb
ulimits: ulimits:
......
services: services:
gnb_mono_tdd: gnb_mono_tdd:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: nsa-b200-gnb container_name: nsa-b200-gnb
cap_drop: cap_drop:
- ALL - ALL
......
services: services:
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/oai-gnb-aw2s:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-gnb-aw2s:${TAG:-develop}
network_mode: "host" network_mode: "host"
container_name: oai-gnb-aw2s container_name: oai-gnb-aw2s
cap_drop: cap_drop:
......
services: services:
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/oai-gnb-aw2s:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-gnb-aw2s:${TAG:-develop}
network_mode: "host" network_mode: "host"
container_name: oai-gnb-aw2s container_name: oai-gnb-aw2s
cap_drop: cap_drop:
......
services: services:
gnb_mono_tdd: gnb_mono_tdd:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: sa-b200-gnb container_name: sa-b200-gnb
cap_drop: cap_drop:
- ALL - ALL
......
services: services:
gnb_cucp: gnb_cucp:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: sa-cucp-gnb container_name: sa-cucp-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -25,7 +25,7 @@ services: ...@@ -25,7 +25,7 @@ services:
retries: 5 retries: 5
gnb_cuup: gnb_cuup:
image: ${REGISTRY:-oaisoftwarealliance}/${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${NRCUUP_IMG:-oai-nr-cuup}:${TAG:-develop}
container_name: sa-cuup-gnb container_name: sa-cuup-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -51,7 +51,7 @@ services: ...@@ -51,7 +51,7 @@ services:
retries: 5 retries: 5
gnb_du_tdd: gnb_du_tdd:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: sa-du-b200-gnb container_name: sa-du-b200-gnb
cap_drop: cap_drop:
- ALL - ALL
......
services: services:
gnb_cu: gnb_cu:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: sa-cu-gnb container_name: sa-cu-gnb
cap_drop: cap_drop:
- ALL - ALL
...@@ -25,7 +25,7 @@ services: ...@@ -25,7 +25,7 @@ services:
retries: 5 retries: 5
gnb_du_fdd: gnb_du_fdd:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: sa-du-b200-gnb container_name: sa-du-b200-gnb
cap_drop: cap_drop:
- ALL - ALL
......
services: services:
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/oai-gnb-fhi72:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-gnb-fhi72:${TAG:-develop}
cap_add: cap_add:
- SYS_ADMIN - SYS_ADMIN
- IPC_LOCK - IPC_LOCK
......
services: services:
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/oai-gnb-fhi72:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-gnb-fhi72:${TAG:-develop}
cap_add: cap_add:
- IPC_LOCK - IPC_LOCK
- SYS_NICE - SYS_NICE
......
services: services:
oai-gnb: oai-gnb:
image: ${REGISTRY:-oaisoftwarealliance}/oai-gnb-fhi72:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}oai-gnb-fhi72:${TAG:-develop}
cap_add: cap_add:
- IPC_LOCK - IPC_LOCK
- SYS_NICE - SYS_NICE
......
...@@ -34,7 +34,7 @@ services: ...@@ -34,7 +34,7 @@ services:
retries: 5 retries: 5
oai-gnb-aerial: oai-gnb-aerial:
cpuset: "13-14" cpuset: "13-14"
image: ${REGISTRY:-oaisoftwarealliance}/oai-gnb-aerial:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb-aerial}:${TAG:-develop}
depends_on: depends_on:
nv-cubb: nv-cubb:
condition: service_healthy condition: service_healthy
......
...@@ -34,7 +34,7 @@ services: ...@@ -34,7 +34,7 @@ services:
retries: 5 retries: 5
oai-gnb-aerial: oai-gnb-aerial:
cpuset: "13-16" cpuset: "13-16"
image: ${REGISTRY:-oaisoftwarealliance}/oai-gnb-aerial:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb-aerial}:${TAG:-develop}
depends_on: depends_on:
nv-cubb: nv-cubb:
condition: service_healthy condition: service_healthy
......
services: services:
gnb_mono_tdd: gnb_mono_tdd:
image: ${REGISTRY:-oaisoftwarealliance}/${GNB_IMG:-oai-gnb}:${TAG:-develop} image: ${REGISTRY-oaisoftwarealliance/}${GNB_IMG:-oai-gnb}:${TAG:-develop}
container_name: sa-b200-gnb container_name: sa-b200-gnb
cap_drop: cap_drop:
- ALL - ALL
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment