領収証発行サービス
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
296B

  1. #!/usr/bin/env bash
  2. if [ ! -z "$WWWUSER" ]; then
  3. usermod -u $WWWUSER sail
  4. fi
  5. if [ ! -d /.composer ]; then
  6. mkdir /.composer
  7. fi
  8. chmod -R ugo+rw /.composer
  9. if [ $# -gt 0 ]; then
  10. exec gosu $WWWUSER "$@"
  11. else
  12. exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
  13. fi