1
0
mirror of https://github.com/typemill/typemill.git synced 2025-10-19 08:36:23 +02:00
Files
php-typemill/docker-utils/init-server
2022-05-18 21:01:19 +02:00

16 lines
303 B
Bash

#!/bin/sh
find /var/www/html -type d -empty -exec cp -R /tmp/* /var/www/html/ \;
cp -R /src/* /var/www/html/
cp -R /tmp/* /var/www/html/
/usr/local/bin/install-composer && \
./composer.phar update
usermod -u $PUID www-data
groupmod -g $PGID www-data
/usr/local/bin/adjust-rights
apache2-foreground