Install_OSC_O-RAN_deployment/prepullAllDockerImages

21 lines
889 B
Plaintext
Raw Permalink Normal View History

2024-02-27 16:45:18 +01:00
#!/bin/bash
containers="nexus3.o-ran-sc.org:10004/o-ran-sc/ric-plt-a1:3.1.1
nexus3.o-ran-sc.org:10002/o-ran-sc/ric-plt-appmgr:0.5.7
nexus3.o-ran-sc.org:10002/o-ran-sc/ric-plt-dbaas:0.6.3
nexus3.o-ran-sc.org:10002/o-ran-sc/ric-plt-e2mgr:6.0.2
nexus3.o-ran-sc.org:10002/o-ran-sc/ric-plt-e2:6.0.3
nexus3.o-ran-sc.org:10002/o-ran-sc/ric-plt-rtmgr:0.9.5
nexus3.o-ran-sc.org:10002/o-ran-sc/ric-plt-submgr:0.9.6
nexus3.o-ran-sc.org:10002/o-ran-sc/ric-plt-vespamgr:0.7.5
nexus3.o-ran-sc.org:10002/o-ran-sc/ric-plt-o1:0.6.2
nexus3.o-ran-sc.org:10002/o-ran-sc/ric-plt-alarmmanager:0.5.15
nexus3.o-ran-sc.org:10002/o-ran-sc/it-dep-init:0.0.1
docker.io/prom/prometheus:v2.18.1
docker.io/kong/kubernetes-ingress-controller:0.7.0
docker.io/kong:1.4
docker.io/prom/alertmanager:v0.20.0
nexus3.o-ran-sc.org:10001/o-ran-sc/bldr-ubuntu18-c-go:1.9.0
"
for i in $containers; do echo $i; docker pull $i; done