mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-26 06:59:52 +03:00
9 lines
No EOL
215 B
Bash
Executable file
9 lines
No EOL
215 B
Bash
Executable file
#!/bin/sh
|
|
|
|
REGISTRY="${1:-localhost:5000}"
|
|
|
|
for image in alpine:latest alpine:edge alpine:3.11 alpine:3.10 alpine:3.9; do
|
|
docker pull $image
|
|
docker tag $image $REGISTRY/$image
|
|
docker push $REGISTRY/$image
|
|
done |