bunkerweb/examples/drupal/setup-docker.sh

10 lines
198 B
Bash
Raw Normal View History

2022-06-03 15:24:14 +00:00
#!/bin/bash
if [ $(id -u) -ne 0 ] ; then
echo "❌ Run me as root"
exit 1
fi
chown -R root:101 bw-data
2022-07-20 13:37:29 +00:00
find ./bw-data -type f -exec chmod 0660 {} \;
find ./bw-data -type d -exec chmod 0770 {} \;