mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
ecc8c59101
Signed-off-by: Mac Chaffee <machaffe@renci.org>
14 lines
362 B
Bash
14 lines
362 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
|
|
|
|
exec /home/harbor/harbor_registryctl -c /etc/registryctl/config.yml
|