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