mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-07 11:10:16 +01:00
ff2a6c7a01
Fixes #11606 As we DO NOT want to user to execute GC in the container, rename it and append the warning message. Signed-off-by: wang yan <wangyan@vmware.com>
14 lines
357 B
Bash
14 lines
357 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# The directory /var/lib/registry is within the container, and used to store image in CI testing.
|
|
# So for now we need to chown to it to avoid failure in CI.
|
|
# if [ -d /var/lib/registry ]; then
|
|
# chown 10000:10000 -R /var/lib/registry
|
|
# fi
|
|
|
|
/home/harbor/install_cert.sh
|
|
|
|
/usr/bin/registry_DO_NOT_USE_GC serve /etc/registry/config.yml
|