mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 16:19:37 +01:00
b3a344b60e
Read the content of env instead of config_env as the config_env has been removed Signed-off-by: Wenkai Yin <yinw@vmware.com>
22 lines
506 B
Bash
Executable File
22 lines
506 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
cp tests/docker-compose.test.yml make/.
|
|
|
|
mkdir -p core
|
|
cp /data/secret/core/private_key.pem /etc/core/
|
|
|
|
mkdir src/core/conf
|
|
cp make/common/config/core/app.conf src/core/conf/
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
IP=`ifconfig en0 | grep "inet " | grep -Fv 127.0.0.1 | awk '{print $2}'`
|
|
else
|
|
IP=`ip addr s eth0 |grep "inet "|awk '{print $2}' |awk -F "/" '{print $1}'`
|
|
fi
|
|
echo "server ip is "$IP
|
|
|
|
echo "Current path is"
|
|
pwd
|
|
cat make/common/config/core/env
|
|
|
|
chmod 777 /data/
|