mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 09:39:51 +01:00
13 lines
385 B
Bash
Executable File
13 lines
385 B
Bash
Executable File
#!/bin/bash
|
|
|
|
IP=`ip addr s eth0 |grep "inet "|awk '{print $2}' |awk -F "/" '{print $1}'`
|
|
docker pull hello-world
|
|
docker pull busybox
|
|
docker login -u admin -p Harbor12345 $IP:5000
|
|
|
|
docker tag hello-world $IP:5000/library/hello-world:latest
|
|
docker push $IP:5000/library/hello-world:latest
|
|
|
|
docker tag busybox $IP:5000/library/busybox:latest
|
|
docker push $IP:5000/library/busybox:latest
|