forked from open-rpa/docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
offline-pull.bat
46 lines (34 loc) · 1.78 KB
/
offline-pull.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@echo off
if not exist "offline" mkdir offline
docker compose -f docker-compose-offline-cache.yml -p cache up -d
pause
docker pull mongo
docker image tag mongo:latest localhost:5000/mongo:latest
docker image push localhost:5000/mongo:latest
docker pull mongo-express
docker image tag mongo:latest localhost:5000/mongo-express:latest
docker image push localhost:5000/mongo-express:latest
docker pull traefik
docker image tag traefik:latest localhost:5000/traefik:latest
docker image push localhost:5000/traefik:latest
docker pull rabbitmq:3-management
docker image tag rabbitmq:3-management localhost:5000/rabbitmq:3-management
docker image push localhost:5000/rabbitmq:3-management
docker pull verdaccio/verdaccio
docker image tag verdaccio/verdaccio:latest localhost:5000/verdaccio/verdaccio
docker image push localhost:5000/verdaccio/verdaccio
docker pull iegomez/mosquitto-go-auth
docker image tag iegomez/mosquitto-go-auth:latest localhost:5000/iegomez/mosquitto-go-auth
docker image push localhost:5000/iegomez/mosquitto-go-auth
docker pull otel/opentelemetry-collector
docker image tag otel/opentelemetry-collector:latest localhost:5000/otel/opentelemetry-collector:latest
docker image push localhost:5000/otel/opentelemetry-collector:latest
docker pull victoriametrics/victoria-metrics
docker image tag victoriametrics/victoria-metrics:latest localhost:5000/victoriametrics/victoria-metrics:latest
docker image push localhost:5000/victoriametrics/victoria-metrics:latest
docker pull openiap/grafana
docker image tag openiap/grafana:latest localhost:5000/openiap/grafana:latest
docker image push localhost:5000/openiap/grafana:latest
docker pull openiap/openflow:latest
docker image tag openiap/openflow:latest localhost:5000/openiap/openflow:latest
docker image push localhost:5000/openiap/openflow:latest