bunkerweb/examples/magento/setup-docker.sh
2022-07-25 10:11:44 +02:00

10 lines
No EOL
169 B
Bash
Executable file

#!/bin/bash
if [ $(id -u) -ne 0 ] ; then
echo "❌ Run me as root"
exit 1
fi
mkdir elasticsearch-data
chown 1001:1001 elasticsearch-data
chmod 770 elasticsearch-data