| 1234567891011121314151617 | #!/usr/bin/env bashif [ ! -z "$WWWUSER" ]; then    usermod -u $WWWUSER sailfiif [ ! -d /.composer ]; then    mkdir /.composerfichmod -R ugo+rw /.composerif [ $# -gt 0 ];then    exec gosu $WWWUSER "$@"else    /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conffi
 |