SRC_DIR=/path/to/mounted/volume
DIR=/path/to/dir
USER=www-data
GROU=www-data
$uid=$(stat -c '%u' $SRC_DIR)
$gid=$(stat -c '%g' $SRC_DIR)
echo $uid > /root/uid
echo $gid > /root/gid
usermod -u $uid $USER
groupmod -g $gid $GROUP
mkdir -p $DIR
chown -R $USER:$GROUP $DIR