13 lines
254 B
Text
13 lines
254 B
Text
|
#!/usr/bin/sh
|
||
|
|
||
|
. ./.secret.env
|
||
|
envsubst < harbor.template.yml > harbor.yml
|
||
|
|
||
|
docker-compose down -v
|
||
|
|
||
|
./prepare --with-trivy --with-chartmuseum
|
||
|
|
||
|
sed -i "s/^.*proxy_set_header X-Forwarded-Proto.*$//g" ./common/config/nginx/nginx.conf
|
||
|
|
||
|
docker-compose up -d
|