12 lines
254 B
Bash
Executable file
12 lines
254 B
Bash
Executable file
#!/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
|