9 lines
147 B
Bash
9 lines
147 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Custom entrypoint.sh: `hostname -s`!"
|
|
chmod -Rfv ugo+w /var/www/html/dat
|
|
|
|
exec docker-php-entrypoint apache2-foreground
|
|
|