entrypoint.sh 278 B

123456789101112
  1. #!/usr/bin/env bash
  2. echo "#Dummy" >> /etc/rc.d/init.d/functions
  3. source /etc/init.d/web-registry-portal status
  4. rm -rf /var/run/web-registry-portal/play.pid
  5. if [ ! -z "$*" ]
  6. then
  7. exec "$@"
  8. else
  9. exec ${WEB_REGISTRY_BIN} ${WEB_REGISTRY_CUSTOM_OPTS} ${WEB_REGISTRY_OPTS}
  10. fi