File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -28,16 +28,20 @@ terminate_processes() {
28
28
trap terminate_processes SIGTERM SIGINT
29
29
30
30
if [[ " ${REGISTRY_ENABLED} " == " true" ]]; then
31
+ echo " REGISTRY_ENABLED='true'. Starting the OCI Registry..."
31
32
# Run the OCI_Registry in the background
32
33
registry serve /etc/docker/registry/config.yml &
33
34
REGISTRY_PID=$!
35
+ echo " ...OCI Registry successfully started."
34
36
fi
35
37
36
38
if [[ " ${PYPISERVER_ENABLED} " == " true" ]]; then
39
+ echo " PYPISERVER_ENABLED='true'. Starting the PyPiServer..."
37
40
# Run the pypi server in the background
38
41
mkdir -p /data/packages
39
42
/pypi-server/bin/pypi-server run -p ${PYPISERVER_PORT:- $PORT } --server gunicorn --backend cached-dir /data/packages --verbose --log-file /var/log/pypiserver.log &
40
43
PYPI_PID=$!
44
+ echo " ...PyPiServer started."
41
45
fi
42
46
43
47
You can’t perform that action at this time.
0 commit comments