mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 10:10:12 +01:00
5 lines
149 B
Bash
Executable File
5 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
IP=`ip addr s eth0 |grep "inet "|awk '{print $2}' |awk -F "/" '{print $1}'`
|
|
#echo $IP
|
|
sed "s/reg.mydomain.com/$IP/" -i Deploy/harbor.cfg
|