7 lines
129 B
Bash
Executable File
7 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find / -user 82 -exec chown -v -h 1000 '{}' \;
|
|
find / -group 82 -exec chgrp -v 1001 '{}' \;
|
|
|
|
/entrypoint.sh "php-fpm"
|