11 lines
No EOL
292 B
Bash
Executable file
11 lines
No EOL
292 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# This script contains
|
|
|
|
# chown the volumes to make sure they can be read and written by the limited user
|
|
chown www-data:www-data /var/www
|
|
chown www-data:www-data /var/www/.composer
|
|
chown www-data:www-data /var/www/data/
|
|
|
|
# run the original entrypoint
|
|
docker-php-entrypoint "$@" |