add script to pull docker images

This commit is contained in:
Erik Foris 2024-02-27 16:45:18 +01:00
parent 99ba8ed783
commit 79368c6515

20
prepullAllDockerImages Executable file
View File

@ -0,0 +1,20 @@
#!/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